Skip to content

chore(deps): update all non-major dependencies (#1199) #89

chore(deps): update all non-major dependencies (#1199)

chore(deps): update all non-major dependencies (#1199) #89

Workflow file for this run

name: Tag a release
on:
push:
paths:
- package.json
branches:
- "master"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
tag-if-needed:
runs-on: ${{ vars.ACTION_RUNNER_LABEL }}
if: github.event.repository.full_name == 'PKUHPC/SCOW'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
token: ${{ secrets.SCOW_DEPLOYMENT_PAT }}
- uses: fregante/setup-git-user@v2
- uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Create tag if needed
run: node scripts/tag.mjs
send-version-success:
runs-on: ubuntu-latest
steps:
- name: Send Notification Request
run: |
curl -X POST ${{ secrets.RELEASE_SERVICE_ADDRESS }}/version/success \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${{ secrets.RELEASE_API_KEY }}"