Skip to content

Add basic actions file #1

Add basic actions file

Add basic actions file #1

Workflow file for this run

name: ci-tag-publish
on:
push:
branches:
- ci/github_actions_integration
jobs:
publish:
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18"
- name: Get tag from Git
id: git_tag
run: |
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ github.ref_name }}"