-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from erykoff/containers
Change to GHA for building Docker container.
- Loading branch information
Showing
3 changed files
with
85 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: CI | ||
|
||
"on": | ||
push: | ||
tags: | ||
- "*" | ||
pull_request: {} | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
# Only do Docker builds of tagged releases. | ||
if: > | ||
startsWith(github.ref, 'refs/tags/') | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Define the Docker tag | ||
id: vars | ||
run: | | ||
echo GITHUB_REF: $GITHUB_REF | ||
echo GITHUB_HEAD_REF: $GITHUB_HEAD_REF | ||
echo ::set-output name=tag::$(bin/docker-tag.sh) | ||
- name: Print the tag | ||
id: print | ||
run: echo ${{ steps.vars.outputs.tag }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Log in to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: | | ||
ghcr.io/erykoff/redmapper:${{ steps.vars.outputs.tag }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
# Determine the tag for Docker images based on GitHub Actions environment | ||
# variables. | ||
|
||
set -eo pipefail | ||
|
||
if [ -n "$GITHUB_HEAD_REF" ]; then | ||
# For pull requests | ||
echo ${GITHUB_HEAD_REF} | sed -E 's,/,-,g' | ||
else | ||
# For push events | ||
echo ${GITHUB_REF} | sed -E 's,refs/(heads|tags)/,,' | sed -E 's,/,-,g' | ||
fi |