Skip to content

fix: release workflow #6

fix: release workflow

fix: release workflow #6

Workflow file for this run

name: Automated Release
on:
push:
branches:
- main
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# get all history so we can get the correct version number
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Configure Git
run: |
git config --global user.email [email protected]
git config --global user.name niracler
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Extract version from package.json
run: echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
# 先把version存到环境变量中以便后续使用
- name: Bump version and push tag
uses: mathieudutour/github-tag-action@v5
id: ${{ env.VERSION }}

Check failure on line 36 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Automated Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 36, Col: 13): Unrecognized named-value: 'env'. Located at position 1 within expression: env.VERSION
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}