Skip to content

Commit

Permalink
Update release.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
emin committed May 24, 2024
1 parent 2b57a3f commit dd957a0
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up CMake
uses: lukka/get-cmake@latest
Expand All @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up CMake
uses: lukka/get-cmake@latest
Expand All @@ -53,10 +53,12 @@ jobs:
release:
runs-on: ubuntu-latest
needs: [build-windows, build-macos]
permissions:
contents: write

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Download Windows artifact
uses: actions/download-artifact@v2
Expand All @@ -75,10 +77,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag: ${{ github.ref }}
name: Release ${{ github.ref }}
draft: false
prerelease: false
files: |
artifacts: |
release/Chip8Emu.exe
release/Chip8Emu

0 comments on commit dd957a0

Please sign in to comment.