fix(deps): update all non-major dependencies #6055
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: Update side projects | |
on: | |
push: | |
tags: ["**"] | |
branches: [master] | |
pull_request: | |
branches: [master] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
VAGRANT_ORG: PKUHPC | |
VAGRANT_REPO: scow-vagrant | |
jobs: | |
openscow-vagrant: | |
name: Update openscow-vagrant if not from fork | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.head.repo.fork == false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create version file for tag commit | |
if: github.ref_type == 'tag' | |
uses: finnp/create-file-action@master | |
env: | |
FILE_NAME: "./deploy/vagrant/VERSION" | |
FILE_DATA: "${{ github.ref_name }}" | |
- name: Pushes to ${{ env.VAGRANT_ORG }}/${{ env.VAGRANT_REPO }} repo | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
token: ${{ secrets.SCOW_DEPLOYMENT_PAT }} | |
folder: ./deploy/vagrant | |
repository-name: ${{ env.VAGRANT_ORG }}/${{ env.VAGRANT_REPO }} | |
branch: ${{ github.ref_type == 'branch' && github.ref_name || 'master' }} |