Skip to content

fix: Skip unknown locations during implicit update check #19

fix: Skip unknown locations during implicit update check

fix: Skip unknown locations during implicit update check #19

Workflow file for this run

name: package
on:
push:
paths-ignore:
- '**/*.md'
branches:
- main
pull_request:
paths-ignore:
- '**/*.md'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.event.repository.name }}
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: go test -v ./...
build-and-push-latest-image:
runs-on: ubuntu-latest
needs:
- linux
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
- name: Push image
run: |
IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
echo IMAGE_ID=$IMAGE_ID
docker tag $IMAGE_NAME $IMAGE_ID:latest
docker push $IMAGE_ID:latest