version++ #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Release | |
on: | |
push: | |
tags: | |
- "v*" | |
workflow_dispatch: | |
env: | |
APP_NAME: "Sample Desktop App" | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build changelog | |
id: build_changelog | |
run: | | |
# NOTE: if commits subjects are standardized, you can filter the git log based on feat: and fix: | |
# and then replace "feat:" with "New: " and "fix:" with "Fixed " | |
# when AI gets good, we can also summarized commits into a bullet point list | |
PREV_TAG=$(git tag --list v* | tail -n2 | head -n1) | |
echo "changelog=$(git log $PREV_TAG...${{ github.ref_name }} --pretty=format:"- %s")" >> $GITHUB_OUTPUT | |
outputs: | |
changelog: ${{ steps.build_changelog.outputs.changelog }} | |
release: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
needs: changelog | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# build the changelog based on the commit messages between the versioned tags | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
# NOTE: enterprise developers may hard code a version | |
with: | |
node-version: latest | |
# node-version-file: '.nvmrc' | |
- name: Setup Rust | |
run: | | |
rustup update --no-self-update | |
- name: Install Ubuntu dependencies | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt update | |
xargs sudo apt install -y < environment/apt_packages.txt | |
- name: Build frontend | |
run: | | |
yarn --frozen-lockfile | |
yarn build | |
- name: Build Tauri app | |
uses: tauri-apps/tauri-action@v0 | |
# if u get Error: Resource not accessible by integration | |
# go to repository Settings => Action => General => Workflow permissions => Switch to Read and Write permisions | |
env: | |
CI: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} | |
with: | |
# tauri-action replaces \_\_VERSION\_\_ with the app version | |
tagName: ${{ github.ref_name }} | |
releaseName: "${{ env.APP_NAME }} v__VERSION__" | |
releaseBody: | | |
${{needs.changelog.outputs.changelog}} | |
See the assets to download this version and install. | |
releaseDraft: true | |
prerelease: false |