Use ghcr.io repository

pull/239/head
Hubbe 3 years ago committed by Mike Lang
parent 034893ffd2
commit 7312eda8c4

@ -11,6 +11,11 @@ on:
# Allows you to run this workflow manually from the Actions tab # Allows you to run this workflow manually from the Actions tab
workflow_dispatch: workflow_dispatch:
# set token permissions for job so we can push to ghcr.io
permissions:
contents: read
packages: write
jobs: jobs:
build: build:
# The type of runner that the job will run on # The type of runner that the job will run on
@ -19,15 +24,19 @@ jobs:
# Checks out repository under $GITHUB_WORKSPACE, so we can access it # Checks out repository under $GITHUB_WORKSPACE, so we can access it
- uses: actions/checkout@v2 - uses: actions/checkout@v2
# Runs build script - name: Log into ghcr.io
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Run build script - name: Run build script
run: | run: |
# always push # always push
export PUSH=true export PUSH=true
# if this is a push to master and not a PR, also push latest - GITHUB_HEAD_REF is only set for PRs # if this is a push to master and not a PR, also push latest - GITHUB_HEAD_REF is only set for PRs
if [ -z ${GITHUB_HEAD_REF+x} ] && [ "$GITHUB_REF" == "refs/heads/master" ]; then export PUSH=latest; fi if [ -z ${GITHUB_HEAD_REF+x} ] && [ "$GITHUB_REF" == "refs/heads/master" ]; then export PUSH=latest; fi
# log into quay.io so we can push # build and push all components. try to pull and re-use layers from images for all parent commits.
echo "$QUAY_PASSWORD" | docker login quay.io -u "$QUAY_USER" --password-stdin 'CACHE_FROM=$(git rev-list HEAD -n1 --parents | cut -d" " -f 2-) ./build'
# build and push all components. try to pull and re-use layers from images for all parent commits.
'CACHE_FROM=$(git rev-list HEAD -n1 --parents | cut -d" " -f 2-) ./build'

Loading…
Cancel
Save