Skip to content

v0.0.16

v0.0.16 #6

Workflow file for this run

name: Publish
on:
release:
types: [published]
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: "https://registry.npmjs.org"
- name: Checkout code
uses: actions/checkout@v3
- name: Tag the repository
id: tag
run: |
TAG=v$(date -Iseconds | sed 's/[T:\+]/-/g')
echo "$TAG"
echo "tag=$TAG" >> $GITHUB_OUTPUT
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git tag -a $TAG -m "Published version $TAG" ${GITHUB_SHA}
git push origin $TAG
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create a release on GitHub
uses: softprops/action-gh-release@v1
with:
files: dist/*
tag_name: ${{ steps.tag.outputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}