|
@@ -11,12 +11,12 @@ jobs:
|
|
|
runs-on: ubuntu-20.04
|
|
|
steps:
|
|
|
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v3
|
|
|
|
|
|
- name: Set environment variables
|
|
|
id: vars
|
|
|
run: |
|
|
|
- echo "::set-output name=ver::$(echo ${{ github.ref }} | sed -e's#.*/v##')"
|
|
|
+ echo "ver=$(echo ${{ github.ref }} | sed -e's#.*/v##')" >> $GITHUB_OUTPUT
|
|
|
|
|
|
- name: Dependency packages (apt)
|
|
|
run: |
|
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
mv out/*.zip .
|
|
|
|
|
|
- name: Upload artifacts
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
+ uses: actions/upload-artifact@v3
|
|
|
with:
|
|
|
name: greaseweazle-firmware.ci.${{ steps.vars.outputs.ver }}
|
|
|
path: greaseweazle-firmware-${{ steps.vars.outputs.ver }}.zip
|
|
@@ -42,15 +42,15 @@ jobs:
|
|
|
runs-on: ubuntu-20.04
|
|
|
steps:
|
|
|
|
|
|
- - uses: actions/checkout@v2
|
|
|
+ - uses: actions/checkout@v3
|
|
|
|
|
|
- name: Set environment variables
|
|
|
id: vars
|
|
|
run: |
|
|
|
- echo "::set-output name=ver::$(echo ${{ github.ref }} | sed -e's#.*/v##')"
|
|
|
+ echo "ver=$(echo ${{ github.ref }} | sed -e's#.*/v##')" >> $GITHUB_OUTPUT
|
|
|
|
|
|
- name: Download artifacts
|
|
|
- uses: actions/download-artifact@v2
|
|
|
+ uses: actions/download-artifact@v3
|
|
|
with:
|
|
|
name: greaseweazle-firmware.ci.${{ steps.vars.outputs.ver }}
|
|
|
|