-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (28 loc) · 1.07 KB
/
docker-publish.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
name: Publish Docker image
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to GitHub Container Registry
env:
GHCR_PAT: ${{ secrets.GHCR_PAT }}
run: echo "${{ secrets.GHCR_PAT }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Set lowercase repository owner
id: repo-owner
run: echo "::set-output name=owner-lowercase::$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')"
- name: Build and push Docker image
env:
REPOSITORY_OWNER_LOWERCASE: ${{ steps.repo-owner.outputs.owner-lowercase }}
run: |
docker build -t ghcr.io/${REPOSITORY_OWNER_LOWERCASE}/linstor-gui-docker:latest .
docker push ghcr.io/${REPOSITORY_OWNER_LOWERCASE}/linstor-gui-docker:latest