Skip to content

Commit

Permalink
ci: Publish latest.yml for Electron auto-updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl committed Oct 11, 2024
1 parent 00b89b5 commit e8cba3e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 17 deletions.
36 changes: 21 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,31 +107,26 @@ jobs:
- name: Bun deploy (arm)
if: matrix.os == 'ubuntu-24-arm'
run: |
SNAPCRAFT_BUILD_ENVIRONMENT="host" bun deploy:electron
SNAPCRAFT_BUILD_ENVIRONMENT="host" bun run deploy:electron
- name: Bun deploy (others)
if: matrix.os != 'ubuntu-24-arm'
run: |
bun deploy:electron
bun run deploy:electron
- name: Build artifact name
if: "!startsWith(github.ref, 'refs/tags/') && success()"
run: |
mv dist/Cockpit*.${{ matrix.extension }} dist/Cockpit-${{ matrix.suffix }}-$(git describe --tags).${{ matrix.extension }}
- name: Build tag name
if: startsWith(github.ref, 'refs/tags/') && success()
run: |
mv dist/Cockpit*.${{ matrix.extension }} dist/Cockpit-${{ matrix.suffix }}-$(git describe --tags --abbrev=0).${{ matrix.extension }}
- name: Upload binary artifact
uses: actions/upload-artifact@v3
with:
path: dist/Cockpit*.${{ matrix.extension }}
if-no-files-found: error

- name: Upload Artifact
- name: Upload latest metadata artifact
uses: actions/upload-artifact@v3
with:
name: cockpit-${{ matrix.suffix }}
path: dist/Cockpit-${{ matrix.suffix }}-*.${{ matrix.extension }}
path: dist/latest*.yml
if-no-files-found: error

- name: Upload Release
- name: Upload binary release
uses: svenstaro/upload-release-action@v2
if: startsWith(github.ref, 'refs/tags/') && success()
with:
Expand All @@ -142,6 +137,17 @@ jobs:
prerelease: true
file_glob: true

- name: Upload latest metadata release
uses: svenstaro/upload-release-action@v2
if: startsWith(github.ref, 'refs/tags/') && success()
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/latest-*.yml
tag: ${{ github.ref }}
overwrite: true
prerelease: true
file_glob: true

deploy-flatpak:
needs: test
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cockpit",
"version": "1.2.1",
"version": "0.0.0",
"private": true,
"main": "dist/electron/main.js",
"description": "An intuitive and customizable cross-platform ground control station for remote vehicles of all types.",
Expand All @@ -9,7 +9,7 @@
"build:serve": "bun run build && bun run serve",
"coverage": "vitest --coverage",
"deploy:electron:dir": "electron-builder --dir",
"deploy:electron": "electron-builder --publish=never",
"deploy:electron": "electron-builder --publish=never --artifactName=${name}-${os}-${version}.${ext} -c.extraMetadata.version=$(git describe --tags --abbrev=0 | sed 's/^v//')",
"deploy:flatpak": "electron-builder --x64 --linux flatpak",
"dev": "vite --host",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --max-warnings=0",
Expand Down

0 comments on commit e8cba3e

Please sign in to comment.