mirror of https://github.com/ekimekim/wubloader
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
name: Build docker images
|
|
|
|
# Controls when the workflow will run
|
|
on:
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
# set token permissions for job so we can push to ghcr.io
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
jobs:
|
|
build:
|
|
# The type of runner that the job will run on
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
# Checks out repository under $GITHUB_WORKSPACE, so we can access it
|
|
- uses: actions/checkout@v2
|
|
|
|
- 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
|
|
run: |
|
|
# always push
|
|
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 [ -z ${GITHUB_HEAD_REF+x} ] && [ "$GITHUB_REF" == "refs/heads/master" ]; then export PUSH=latest; fi
|
|
# 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'
|
|
|