Merge pull request #295 from DrAugus/renovate/vuetify-3.x-lockfile #104
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: pake homepage | |
on: | |
push: | |
branches: | |
- master | |
# pull_request: | |
# branches: | |
# - master | |
jobs: | |
deploy: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
node: ["16"] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: setup node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
- 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: install others lib (ubuntu only) | |
if: matrix.platform == 'ubuntu-latest' | |
run: | | |
sudo apt install libdbus-1-dev \ | |
libsoup2.4-dev \ | |
libjavascriptcoregtk-4.0-dev \ | |
libwebkit2gtk-4.0-dev \ | |
build-essential \ | |
curl \ | |
wget \ | |
libssl-dev \ | |
libgtk-3-dev \ | |
libayatana-appindicator3-dev \ | |
librsvg2-dev \ | |
gnome-video-effects \ | |
gnome-video-effects-extra | |
- name: install pake-cli | |
run: pnpm install -g pake-cli | |
- name: pake url | |
run: pake https://augusmeow.github.io/ --name Augus | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: output-${{ matrix.platform }}.zip | |
path: | | |
*.dmg | |
*.deb | |
*.msi | |
retention-days: 3 |