Skip to content

Commit

Permalink
Refactor: Update publish workflow to include run name
Browse files Browse the repository at this point in the history
  • Loading branch information
maxisam committed Oct 25, 2024
1 parent fd69fd2 commit 94f10fc
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
name: ♨️ Publish
run-name: Deploy ${{ github.ref_name}} @ ${{ github.sha}}

permissions:
contents: write

on:
# on tag push
# on tag push
push:
tags:
- "v[0-9]+"
- "v[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+"
- "v[0-9]+.[0-9]+.[0-9]+-*"
tags:
- 'v[0-9]+'
- 'v[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-*'

jobs:
publish:
Expand Down

0 comments on commit 94f10fc

Please sign in to comment.