From ffe5a36c2f9e1865ac7bb673fe72a76c10a6e95a Mon Sep 17 00:00:00 2001 From: zachcp Date: Sun, 3 Sep 2023 17:49:11 -0400 Subject: [PATCH] add release (#4) Co-authored-by: Zachary Charlop-Powers --- .github/workflows/release.yaml | 48 ++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..31b2615 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,48 @@ +name: 'publish' +on: + push: + branches: + - release + +jobs: + publish-tauri: + permissions: + contents: write + strategy: + fail-fast: false + matrix: + platform: [macos-latest, ubuntu-20.04, windows-latest] + + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v3 + - name: setup node + uses: actions/setup-node@v3 + with: + node-version: 16 + - name: install Rust stable + uses: dtolnay/rust-toolchain@stable + + - name: install dependencies (ubuntu only) + if: matrix.platform == 'ubuntu-20.04' + run: | + sudo apt-get update + sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf wget + wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.3.450/quarto-1.3.450-linux-amd64.deb + sudo dpkg -i quarto-1.3.450-linux-amd64.deb + - name: install dependencies (macos only) + if: matrix.platform == 'macos-latest' + run: brew install quarto + - name: install dependencies (windows only) + if: matrix.platform == 'windows-latest' + run: choco install quarto + + - uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version + releaseName: 'App v__VERSION__' + releaseBody: 'See the assets to download this version and install.' + releaseDraft: true + prerelease: false \ No newline at end of file