Skip to content

Commit

Permalink
fixed github action
Browse files Browse the repository at this point in the history
  • Loading branch information
cbiering committed Sep 12, 2024
1 parent 6a372e8 commit ace88b4
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,15 @@ name: Release
on:
push:
tags:
- '*'
- "*.*"

jobs:
create_release:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
This release is based on the tag `${{ github.ref }}`.
draft: false
prerelease: false
- name: Release
uses: softprops/action-gh-release@v2

0 comments on commit ace88b4

Please sign in to comment.