Skip to content

Commit

Permalink
chore: push action-gh-release from v1 to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
speed47 committed May 8, 2024
1 parent dfd5808 commit 709d3fb
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
set +x
./configure ${{ matrix.clionly }} --with-werror
- name: make
run: make -j$(sysctl -n hw.ncpu || 2)
run: |
cat Makefile.config
make -j$(sysctl -n hw.ncpu || 2)
- name: check executability
run: ./dvdisaster --version
- name: check executable (GUI)
Expand All @@ -49,7 +51,7 @@ jobs:
run: ./.github/workflows/make-mac-app.sh ${{ github.ref }}
id: dist
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.dist.outputs.archive }}
draft: true
Expand Down Expand Up @@ -112,7 +114,7 @@ jobs:
cd dist
dvdisaster.exe --version
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.dist.outputs.archive }}
draft: true
Expand All @@ -138,7 +140,7 @@ jobs:
run: ./.github/workflows/make-dist.sh ${{ github.ref }}
id: dist
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.dist.outputs.archive }}
draft: true
Expand Down Expand Up @@ -195,7 +197,7 @@ jobs:
echo "archive=$archive" >> "$GITHUB_OUTPUT"
echo "appimage is <$archive>"
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: ${{ steps.dist.outputs.archive }}
draft: true

0 comments on commit 709d3fb

Please sign in to comment.