Skip to content

maybe fix publish

maybe fix publish #9

Workflow file for this run

name: Publish Tag
on:
push:
tags:
- 'v*'
jobs:
build:
uses: ./.github/workflows/ci.yml
release:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
path: artifacts
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: artifacts/**/*.tar.gz
generate_release_notes: true
draft: false
prerelease: false
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
publish:
needs: build
uses: ./.github/workflows/publish-package.yml
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}