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

build(deps): bump actions/download-artifact #101

Merged
merged 1 commit into from
Jan 14, 2025
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
8 changes: 4 additions & 4 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ jobs:
needs: build
steps:
- name: Download unsigned APK
uses: actions/download-artifact@2a5974104b6d5dbdb2f9468a3e54da3bdd241578
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: bisq-release.apk
path: app/build/outputs/apk/release

- name: Download unsigned AAB
uses: actions/download-artifact@2a5974104b6d5dbdb2f9468a3e54da3bdd241578
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: bisq-release.aab
path: app/build/outputs/bundle/release
Expand Down Expand Up @@ -151,13 +151,13 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- name: Download signed APK
uses: actions/download-artifact@2a5974104b6d5dbdb2f9468a3e54da3bdd241578
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: bisq-release-signed.apk
path: app/build/outputs/apk/release

- name: Download signed AAB
uses: actions/download-artifact@2a5974104b6d5dbdb2f9468a3e54da3bdd241578
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16
with:
name: bisq-release-signed.aab
path: app/build/outputs/bundle/release
Expand Down
Loading