fix: fix SourceSpan and History not being properly exported #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: on-tag-release-github | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
publish-into-github: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup node version | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Installing project dependencies | |
run: npm install | |
- name: Building the project | |
run: npm start build | |
- name: Create Release on GitHub | |
uses: ncipollo/release-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.ref_name }} | |
name: Release ${{ github.ref_name }} | |
allowUpdates: true | |
body: ${{ github.event.head_commit.message }} |