Skip to content

Commit b9a147a

Browse files
committed
[APP] Create release workflow
1 parent ea9392a commit b9a147a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Check out the repo
10+
uses: actions/checkout@v2
11+
12+
- name: Build and push image
13+
uses: docker/build-push-action@v1
14+
with:
15+
username: ${{ github.actor }}
16+
password: ${{ secrets.GITHUB_TOKEN }}
17+
registry: docker.pkg.github.com
18+
repository: sytten/anveosms/anveosms
19+
tag_with_ref: true

0 commit comments

Comments
 (0)