diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..4a8a23d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,41 @@ +name: "build-nightly" +on: [push] + +jobs: + publish-tauri: + strategy: + fail-fast: false + matrix: + platform: [macos-latest, ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.platform }} + steps: + - uses: actions/checkout@v2 + - name: setup node + uses: actions/setup-node@v1 + with: + node-version: 12 + - name: install Rust stable + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - name: install webkit2gtk (ubuntu only) + if: matrix.platform == 'ubuntu-latest' + run: | + sudo apt-get update + sudo apt-get install -y webkit2gtk-4.0 + - name: download static assets + run: | + yarn + yarn fetch + - name: install app dependencies and build it + run: yarn && yarn build + - uses: tauri-apps/tauri-action@v0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tagName: nightly # the action automatically replaces \_\_VERSION\_\_ with the app version + releaseName: "ClipCC Desktop Tauri Nightly Build" + releaseBody: "You can download the build to test." + releaseDraft: true + prerelease: false