Skip to content

🐞 fix(workflows): fix push tags error #2

🐞 fix(workflows): fix push tags error

🐞 fix(workflows): fix push tags error #2

Workflow file for this run

name: push_release
permissions:
contents: write
on:
push:
tags:
- "v*"
jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
steps:
# ...
- name: Checkout Code
uses: actions/checkout@master
- name: Create Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false