Skip to content

Commit 66cde76

Browse files
committed
Add build release GitHub Action
1 parent ad7d2fe commit 66cde76

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build-release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Build release
3+
4+
on:
5+
release:
6+
types: [ released ]
7+
8+
jobs:
9+
build-production:
10+
name: Build production ${{ github.event.release.tag_name }}
11+
uses: mlibrary/platform-engineering-workflows/.github/workflows/build-production.yml@v1
12+
with:
13+
image_name: ${{ vars.IMAGE_NAME }}
14+
tag: ${{ github.event.release.tag_name }}
15+
dockerfile: Dockerfile
16+
secrets: inherit

0 commit comments

Comments
 (0)