Skip to content

fix: release

fix: release #4

Workflow file for this run

# git tag v0.0.108 && git push origin --tags
name: Auto Create Release
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
build:
permissions:
id-token: read # to verify the deployment originates from an appropriate source

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

View workflow run for this annotation

GitHub Actions / Auto Create Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 13, Col: 17): Unexpected value 'read'

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

View workflow run for this annotation

GitHub Actions / Auto Create Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 13, Col: 17): Unexpected value 'read'
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Hello, world
draft: false
prerelease: false