-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.36 KB
/
distribution-server-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
on:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
name: Publish Distribution Server Docker image
jobs:
push_to_registry:
name: Push Docker image to GitHub Packages
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: PrepareReg Names
run: |
echo IMAGE_REPOSITORY=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
- name: Log in to GitHub Docker Registry
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
registry: docker.pkg.github.com
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825
with:
context: distribution-server
push: true
tags: |
docker.pkg.github.com/${{ env.IMAGE_REPOSITORY }}/distribution-server:${{ github.sha }}
docker.pkg.github.com/${{ env.IMAGE_REPOSITORY }}/distribution-server:${{ github.event.release.tag_name }}
docker.pkg.github.com/${{ env.IMAGE_REPOSITORY }}/distribution-server:latest