Skip to content

Tag stable version

Tag stable version #49

Workflow file for this run

name: Tag stable version
on:
workflow_dispatch:
jobs:
tag:
runs-on: ubuntu-latest
environment: upload
permissions:
id-token: write # Required by Akeyless
contents: read
packages: read
steps:
- name: Import Secrets
id: import-secrets
uses: LanceMcCarthy/akeyless-action@v3
with:
access-id: ${{ secrets.GH_AKEYLESS_ACCESS_ID }}
static-secrets: |
{
"/WebComponents/prod/tokens/PROGRESS_NPM_REGISTRY_TOKEN": "NPM_TOKEN"
}
export-secrets-to-environment: false
- name: Checkout
uses: actions/checkout@v4
with:
ref: master
- name: Setup node
id: setup-node
uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
env:
NODE_AUTH_TOKEN: ${{ steps.import-secrets.outputs.NPM_TOKEN }}
- name: Tag stable version
run: ./build/tag-stable.sh