Files
yet-another-cad-viewer/.github/workflows/deploy.yml
2024-03-03 19:57:27 +01:00

42 lines
1.0 KiB
YAML

name: "maybe deploy"
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+.*"
permissions:
contents: "write"
jobs:
deploy:
concurrency: "ci-${{ github.ref }}" # Recommended if you intend to make multiple deployments in quick succession.
runs-on: "ubuntu-latest"
needs: "check-early-exit"
if: "needs.check-early-exit.outputs.should-deploy == 'true'"
steps:
- uses: "dawidd6/action-download-artifact@v3"
with:
workflow: "build"
name: "frontend"
path: "./public"
- uses: "dawidd6/action-download-artifact@v3"
with:
workflow: "build"
name: "logo"
path: "./public"
- run: "ls -l -R ./public"
- uses: "JamesIves/github-pages-deploy-action@v4"
with:
folder: "public"
- uses: "svenstaro/upload-release-action@v2"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
file: "./public/*"
asset_name: "frontend"
tag: "${{ github.ref }}"
overwrite: true
file_glob: true