Skip to content

Commit

Permalink
build: Try to fix artifacts for release #1000
Browse files Browse the repository at this point in the history
  • Loading branch information
uSlashVlad committed Sep 21, 2024
1 parent 9da822a commit e50b949
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
cache: true
- uses: actions/cache@v3
with:
key: ${{ runner.os }}-pubcache
path: |
~/.pub-cache/git
~/.pub-cache/hosted
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
cache: true
- uses: actions/cache@v3
with:
key: ${{ runner.os }}-pubcache
path: |
~/.pub-cache/git
~/.pub-cache/hosted
Expand Down Expand Up @@ -97,6 +98,7 @@ jobs:
java-version: '17'
- uses: actions/cache@v3
with:
key: ${{ runner.os }}-pubcache
path: |
~/.pub-cache/git
~/.pub-cache/hosted
Expand Down Expand Up @@ -143,14 +145,15 @@ jobs:
uses: actions/download-artifact@v3
with:
name: artifacts-apk-foss
path: $GITHUB_WORKSPACE/artifacts/
- name: Check files
run: pwd && ls -R
run: pwd && ls -l artifacts
- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
tag: ${{ needs.version_update.outputs.tag_name }}
name: v${{ needs.version_update.outputs.app_version }}
bodyFile: release_notes/${{ needs.version_update.outputs.app_version }}/github/RELEASE_NOTES.md
artifacts: 'artifacts-apk-foss/*'
artifacts: 'artifacts/*'
token: ${{ secrets.GITHUB_TOKEN }}
draft: true

0 comments on commit e50b949

Please sign in to comment.