😶 Replaces pre-made actions with bash commands

Re: #156
This commit is contained in:
Alicia Sykes 2021-08-14 23:26:03 +01:00 committed by GitHub
parent 2fb6b83673
commit 113ede894e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 14 deletions

View File

@ -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