-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
90 additions
and
78 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,42 @@ | ||
|
||
|
||
# Copyright 2019-2021 Tauri Programme within The Commons Conservancy | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# SPDX-License-Identifier: MIT | ||
|
||
name: updater test artifacts | ||
name: 'publish' | ||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/artifacts-updater.yml' | ||
- 'core/tauri/**' | ||
- 'tooling/cli.rs/**' | ||
- 'tooling/bundler/**' | ||
- 'examples/updater/**' | ||
push: | ||
branches: | ||
- release | ||
|
||
jobs: | ||
build-artifacs: | ||
runs-on: ${{ matrix.platform }} | ||
|
||
publish-tauri: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
platform: [ubuntu-latest, macos-latest, windows-latest] | ||
platform: [macos-latest, ubuntu-latest, windows-latest] | ||
|
||
runs-on: ${{ matrix.platform }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: install stable | ||
- name: setup node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: install Rust stable | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
- name: install webkit2gtk (ubuntu only) | ||
- name: install dependencies (ubuntu only) | ||
if: matrix.platform == 'ubuntu-latest' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y webkit2gtk-4.0 | ||
- run: cargo install --path ./tooling/cli.rs --force | ||
- name: install cli deps via yarn | ||
working-directory: ./tooling/cli.js | ||
run: yarn | ||
- name: build cli | ||
working-directory: ./tooling/cli.js | ||
run: yarn build | ||
- name: build sample artifacts (updater) | ||
working-directory: ./examples/updater | ||
run: | | ||
yarn install | ||
node ../../tooling/cli.js/bin/tauri build | ||
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf libasound2-dev libudev-dev pkg-config | ||
- name: install app dependencies and build it | ||
run: yarn && yarn build | ||
- uses: tauri-apps/tauri-action@v0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | ||
- uses: actions/upload-artifact@v2 | ||
if: matrix.platform == 'ubuntu-latest' | ||
with: | ||
name: linux-updater-artifacts | ||
path: ./target/release/bundle/appimage/updater-example_*.AppImage.* | ||
|
||
- uses: actions/upload-artifact@v2 | ||
if: matrix.platform == 'windows-latest' | ||
with: | ||
name: windows-updater-artifacts | ||
path: ./target/release/bundle/msi/* | ||
|
||
- uses: actions/upload-artifact@v2 | ||
if: matrix.platform == 'macos-latest' | ||
TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} | ||
with: | ||
name: macos-updater-artifacts | ||
path: ./target/release/bundle/macos/updater-example_*.app.tar.* | ||
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version | ||
releaseName: 'Piano Trainer v__VERSION__' | ||
releaseBody: 'See the assets to download this version and install.' | ||
releaseDraft: false | ||
prerelease: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Scale Trainer | ||
# Piano Trainer | ||
|
||
A cross-platform utility for learning the piano | ||
|
||
|
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
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
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
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