try to tar correct files #17
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 | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "offlineMode" branch | |
push: | |
branches: [ "offlineMode" ] | |
pull_request: | |
branches: [ "offlineMode" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# build job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# copies into $GITHUB_WORKSPACE | |
- uses: actions/checkout@v4 | |
with: | |
ref: 'offlineMode' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 'latest' | |
- name: Setup | |
run: | | |
cargo install wasm-pack | |
npm --prefix $GITHUB_WORKSPACE/frontend ci | |
- name: Build | |
run: | | |
npm --prefix $GITHUB_WORKSPACE/frontend run buildOffline | |
find $GITHUB_WORKSPACE/frontend/dist/ -type d -exec chmod 755 {} \; | |
find $GITHUB_WORKSPACE/frontend/dist/ -type f -exec chmod 644 {} \; | |
tar -cvf github-pages.tar -C $GITHUB_WORKSPACE/frontend/dist . | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: 'github-pages' | |
path: github-pages.tar | |
if-no-files-found: error | |
# deploy job | |
deploy: | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{steps.deployment.outputs.page_url}} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |