Skip to content

Commit

Permalink
add release job
Browse files Browse the repository at this point in the history
  • Loading branch information
lavrton committed Jan 6, 2025
1 parent 7707e1b commit b6c35ba
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: 'tagged-release'

on:
push:
tags:
- '*'

jobs:
tagged-release:
name: 'Tagged Release'
runs-on: 'ubuntu-latest'

steps:
# ...
- name: 'Build & test'
run: |
echo "done!"
- uses: 'marvinpinto/action-automatic-releases@latest'
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
prerelease: false

0 comments on commit b6c35ba

Please sign in to comment.