Skip to content

Commit

Permalink
feat: update ci to use docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
ZanzyTHEbar committed May 11, 2023
1 parent 715780f commit 0750c00
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,15 @@ jobs:
echo "::group::tauri build"
pnpm tauri build
echo "::endgroup::"
- name: Archive Software Binaries
if: matrix.platform == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
name: production-files
path: |
src-tauri/target/release/bundle/appimage/*.AppImage
retention-days: 5
if-no-files-found: error
- name: Verify build
run: |
ls -la src-tauri/target/release/bundle/appimage
Expand Down Expand Up @@ -115,17 +124,6 @@ jobs:
name: production-files
path: "${{ join(fromJSON(steps.tauri_build.outputs.artifacts), '\n') }}"

- name: Archive Software Binaries
if: matrix.platform == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.platform }}-software
#path: "./ESP/.pio/build/${{ matrix.target_name }}${{ matrix.target_build_type }}/${{ env.FIRMWARE_NAME }}.bin"
path: |
"./src-tauri/target/release/bundle/appimage/*.AppImage"
retention-days: 5
if-no-files-found: error

deploy:
runs-on: ubuntu-latest
name: Deploy
Expand Down

0 comments on commit 0750c00

Please sign in to comment.