mirror of https://github.com/Lissy93/dashy.git
parent
2fb6b83673
commit
113ede894e
|
@ -3,8 +3,9 @@
|
||||||
name: Build and Publish Docker Image to GHCR
|
name: Build and Publish Docker Image to GHCR
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches: ['master']
|
branches: ['master']
|
||||||
|
tags: [v*]
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
IMAGE_NAME: ${{ github.repository }}
|
||||||
|
@ -17,16 +18,19 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
- name: Build image
|
||||||
- name: Login to GitHub Container Registry
|
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
|
||||||
uses: docker/login-action@v1
|
- name: Log in to registry
|
||||||
with:
|
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
|
||||||
registry: ${{ env.REGISTRY }}
|
- name: Push image
|
||||||
username: ${{ github.repository_owner }}
|
run: |
|
||||||
password: ${{ secrets.GHCR_TOKEN }}
|
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
|
||||||
- name: Build and push Docker image
|
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
|
||||||
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
|
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
|
||||||
with:
|
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
|
||||||
context: .
|
[ "$VERSION" == "master" ] && VERSION=latest
|
||||||
push: true
|
echo IMAGE_ID=$IMAGE_ID
|
||||||
tags: latest
|
echo VERSION=$VERSION
|
||||||
|
docker tag $IMAGE_NAME $IMAGE_ID:$VERSION
|
||||||
|
docker push $IMAGE_ID:$VERSION
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue