Skip to content

chore(deps): update pnpm/action-setup action to v4 #4791

chore(deps): update pnpm/action-setup action to v4

chore(deps): update pnpm/action-setup action to v4 #4791

name: Update side projects
on:
push:
tags: ["**"]
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
scow-vagrant:
name: Update scow-vagrant
runs-on: ubuntu-latest
if: vars.PUSH_VAGRANT == 'true'
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 ${{ vars.VAGRANT_REPO_OWNER }}/${{ vars.VAGRANT_REPO_NAME }} repo
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.SCOW_DEPLOYMENT_PAT }}
folder: ./deploy/vagrant
repository-name: ${{ vars.VAGRANT_REPO_OWNER }}/${{ vars.VAGRANT_REPO_NAME }}
branch: ${{ github.ref_type == 'branch' && github.ref_name || 'master' }}