Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
zachey01 committed Oct 23, 2024
1 parent 40c716f commit bc5d813
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ on:

jobs:
build-and-release:
runs-on: self-hosted
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down Expand Up @@ -37,9 +38,9 @@ jobs:
id: create_release
uses: actions/create-release@v1
with:
tag_name: v1.${{ github.run_number }}
release_name: "Release v1.${{ github.run_number }}"
body: "Automatic release v1.${{ github.run_number }}"
tag_name: v1.0.${{ github.run_number }}
release_name: "Release v1.0.${{ github.run_number }}"
body: "Automatic release v1.0.${{ github.run_number }}"
draft: false
prerelease: false
env:
Expand All @@ -52,3 +53,5 @@ jobs:
asset_path: ./SmoothedScroll.exe
asset_name: SmoothedScroll.exe
asset_content_type: application/octet-stream
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit bc5d813

Please sign in to comment.