[2ae4ba1] New Docker Trigger Action release #30
Workflow file for this run
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
name: Docker trigger Build Action | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
env: | |
GH_TOKEN: ${{ secrets.GIT_TOKEN }} | |
GITHUB_TOKEN: ${{ github.token }} | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
jobs: | |
create-new-release: | |
name: Create New Release π | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Create Release | |
run: | | |
gh release create v$(jq -r ".version" package.json) \ | |
--title "v$(jq -r ".version" package.json)" \ | |
--notes "## π What's new in this release: | |
- [x] New Docker Image Release $(jq -r ".version" package.json ) | |
## ππΎ Thank You: | |
A big thank you to all our amazing engineers and maintainers | |
" | |