Skip to content

Commit

Permalink
wip: writing GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
joduplessis committed Jan 29, 2024
1 parent 9b5588a commit ae37b25
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci-tag-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@ jobs:
runs-on: ubuntu-latest
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 }}"
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"

- name: Publish to NPM
working-directory: ./packages/core
env:
Expand Down

0 comments on commit ae37b25

Please sign in to comment.