Skip to content

Commit

Permalink
Update main_matrix.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
erstec authored Sep 4, 2024
1 parent 0755e6c commit 5f3829b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
build-native:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build base
id: base
uses: ./.github/actions/setup-base
Expand All @@ -52,7 +52,7 @@ jobs:
id: version

- name: Store binaries as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: firmware-native-${{ steps.version.outputs.version }}.zip
path: |
Expand All @@ -65,12 +65,12 @@ jobs:
[build-esp32, build-esp32-s3, build-native]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}

- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
path: ./

Expand All @@ -82,7 +82,7 @@ jobs:
run: mv -b -t ./ ./**/firmware*.bin ./*native*/*device-*.sh ./*native*/*device-*.bat

- name: Repackage in single firmware zip
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: firmware-${{ steps.version.outputs.version }}
path: |
Expand All @@ -91,7 +91,7 @@ jobs:
./device-*.bat
retention-days: 5

- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: firmware-${{ steps.version.outputs.version }}
path: ./output
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
needs: [gather-artifacts]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v4
Expand All @@ -141,7 +141,7 @@ jobs:
run: echo "short_version=$(./bin/buildinfo.py short)" >> $GITHUB_OUTPUT
id: short_version

- uses: actions/download-artifact@v4.1.7
- uses: actions/download-artifact@v4
with:
name: firmware-${{ steps.version.outputs.version }}
path: ./output
Expand Down

0 comments on commit 5f3829b

Please sign in to comment.