We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02a3173 commit 08d0304Copy full SHA for 08d0304
.github/workflows/publish-release.yaml
@@ -0,0 +1,32 @@
1
+name: Publish release
2
+
3
+# Run the tasks on every tag
4
+on:
5
+ push:
6
+ tags: ["**"]
7
8
+# Publish images to GitHub packages
9
+env:
10
+ REGISTRY: ghcr.io/stackhpc
11
+ TAG: ${{ github.ref_name }}
12
13
+jobs:
14
+ build_push_images:
15
+ name: Build and push images
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Check out the repository
19
+ uses: actions/checkout@v2
20
21
+ - name: Login to GitHub Container Registry
22
+ uses: docker/login-action@v1
23
+ with:
24
+ registry: ghcr.io
25
+ username: ${{ github.actor }}
26
+ password: ${{ secrets.GITHUB_TOKEN }}
27
28
+ - name: Build images
29
+ run: make docker-build-all
30
31
+ - name: Push images
32
+ run: make docker-push-all
0 commit comments