chanhi2000 is Running deploy.sh π #577
Workflow file for this run
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: run-deploy-sh | |
run-name: ${{ github.actor }} is Running deploy.sh π | |
on: | |
push: | |
tags: | |
- v* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-deploy-sh: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout project's main branch | |
uses: actions/checkout@main | |
- name: vuepress-deploy | |
uses: chanhi2000/vuepress-deploy@master | |
env: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
TARGET_REPO: chanhi2000/chanhi2000.github.io | |
TARGET_BRANCH: master | |
BUILD_SCRIPT: | | |
npm i && npm run build | |
BUILD_DIR: src/.vuepress/dist | |
CNAME: https://chanhi2000.github.io | |