Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub Actions to v4 #68

Merged
merged 2 commits into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: create release for Linux
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Set outputs for pkg_ver
id: set_vars
run: |
Expand All @@ -39,8 +39,9 @@ jobs:
./contrib/dash/actions/script-linux.sh
- name: Upload Artifact
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-bin
path: |
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-x86_64.AppImage
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}.tar.gz
Expand All @@ -52,7 +53,7 @@ jobs:
name: create release for Windows
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Set outputs for pkg_ver
id: set_vars
run: |
Expand All @@ -70,8 +71,9 @@ jobs:
./contrib/dash/actions/script-wine.sh
- name: Upload Artifact
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-bin
path: |
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-setup-win64.exe
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-setup-win32.exe
Expand All @@ -82,7 +84,7 @@ jobs:
name: create release for macOS
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Set outputs for pkg_ver
id: set_vars
run: |
Expand All @@ -102,7 +104,15 @@ jobs:
./contrib/dash/actions/script-osx.sh
- name: Upload Artifact
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macos-bin
path: |
dist/Firo-Electrum-${{ steps.set_vars.outputs.pkg_ver }}-macosx.dmg

merge:
runs-on: ubuntu-latest
needs: [build_linux, build_windows, build_osx]
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
Loading