Skip to content

Commit

Permalink
upload browser extension artifacts to GH release
Browse files Browse the repository at this point in the history
  • Loading branch information
cars10 committed Jan 14, 2025
1 parent 63cba81 commit c76a8fb
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,18 +138,37 @@ jobs:
src-tauri/target/x86_64-apple-darwin/release/bundle/dmg/elasticvue_*_x64.dmg
src-tauri/target/x86_64-apple-darwin/release/bundle/macos/elasticvue_x64*
build_browser_extensions:
name: Build browser extensions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: build extensions
run: make build_browser_extensions

- name: upload artifacts
uses: actions/upload-artifact@v4
with:
name: browser_extension_artifacts
if-no-files-found: error
path: |
artifacts/*.zip
build_docker:
name: Build docker images
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Docker hub login
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

Expand All @@ -169,6 +188,7 @@ jobs:
tags: cars10/elasticvue:latest,cars10/elasticvue:${{ steps.package-version.outputs.current-version }}
#tags: cars10/elasticvue:${{ steps.package-version.outputs.current-version }}


publish:
name: Publish release
needs:
Expand Down Expand Up @@ -216,6 +236,7 @@ jobs:
github-artifacts/mac_x86_64_artifacts/macos/elasticvue_x64*
github-artifacts/windows_artifacts/bundle/msi/elasticvue_*_x64*
github-artifacts/windows_artifacts/elasticvue.exe
github-artifacts/browser_extension_artifacts/*.zip
body: |
## Changelog
${{ steps.changelog.outputs.changelog }}
Expand Down

0 comments on commit c76a8fb

Please sign in to comment.