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

ci: temporarily disable downloading Android artifacts on github release #483

Merged
merged 5 commits into from
Feb 28, 2023
Merged
Changes from 1 commit
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: 10 additions & 12 deletions .github/workflows/create-github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,17 @@ jobs:
git tag -a ${{ env.APP_VERSION }} -m "Release Version ${{ env.APP_VERSION }}"
git push --set-upstream origin develop tag ${{ env.APP_VERSION }}

# Android artifacts
- name: Download artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: build-artifacts.yml
workflow_conclusion: success
name: upcontracts.jar
path: java/build/libs
branch: main
event: push
# - name: Download Android artifact
CJ42 marked this conversation as resolved.
Show resolved Hide resolved
# uses: dawidd6/action-download-artifact@v2
# with:
# workflow: build-artifacts.yml
# workflow_conclusion: success
# name: upcontracts.jar
# path: java/build/libs
# branch: main
# event: push

# iOS artifacts
- name: Download artifact
- name: Download iOS artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: build-artifacts.yml
Expand Down