forked from lukaskroepfl/monitoring-nginx-proxy-companion
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tim
committed
Aug 31, 2023
1 parent
10bd98e
commit c9f8e78
Showing
3 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# This workflow will release | ||
name: Release | ||
|
||
on: | ||
workflow_run: | ||
workflows: [ "Latest Build" ] | ||
branches: [ main ] | ||
types: | ||
- completed | ||
|
||
jobs: | ||
|
||
release: | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Release | ||
uses: brpaz/action-semantic-release@v1 | ||
with: | ||
dry_run: "false" | ||
install_plugins: "semantic-release-docker semantic-release-gcr" | ||
branch: main | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters