Skip to content

Commit

Permalink
ci: fix: updated download and upload github artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
gnuton committed Nov 23, 2024
1 parent 2bafa96 commit 5ff1a05
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,18 +161,19 @@ jobs:
fi
- name: "Archive artifacts"
if: matrix.cfg.skip == false
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: release-${{ matrix.cfg.model }}-${{ matrix.cfg.ui }}
path: "/project/artifacts"
continue-on-error: true
release-job:
name: Publish
needs: build-job
runs-on: ubuntu-latest
if: startsWith(github.event.ref, 'refs/tags/')
steps:
- name: Download packages
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
- name: Get release version
run: |
echo "version=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
Expand Down Expand Up @@ -205,7 +206,7 @@ jobs:
git config --global user.name "Circle CI BOT"
git config --global push.default simple
- name: Download packages
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
- name: "Publish Manifest"
env:
UPDATE_DIR: "updates"
Expand Down

0 comments on commit 5ff1a05

Please sign in to comment.