Skip to content

Commit

Permalink
feat: add release creation
Browse files Browse the repository at this point in the history
  • Loading branch information
wrbl606 committed Aug 23, 2024
1 parent d618e91 commit 9cb5b8a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/create_release.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: Create release

on:
push:
tags:
- 'v*'

jobs:
name: create-release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make build
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: build.tar.gz


create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make build
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: build.tar.gz

0 comments on commit 9cb5b8a

Please sign in to comment.