-
-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add build & release pipeline for versioned images (#107)
* build: add release & build pipeline * build: add variable for project type * build: [TO_REVERT] configure for pushing images to ghcr.io * build: target both x86 and arm platforms for Docker images * build: fix multi-platform builds * Revert "build: [TO_REVERT] configure for pushing images to ghcr.io" This reverts commit 070162a. * build: fix image name * build: fix permission issue with release please by only running it on commits on the main branch
- Loading branch information
Showing
2 changed files
with
77 additions
and
76 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,77 @@ | ||
name: Build & Release | ||
on: | ||
push: | ||
branches: | ||
- "*" | ||
pull_request: | ||
branches: | ||
- main | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
packages: write | ||
env: | ||
# login to docker hub with provided secrets | ||
REGISTRY: docker.io | ||
REGISTRY_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} | ||
REGISTRY_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }} | ||
IMAGE_NAME: bellamy/wallos | ||
# For release-please, see available types at https://github.com/google-github-actions/release-please-action/tree/v4/?tab=readme-ov-file#release-types-supported | ||
PROJECT_TYPE: simple | ||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: rp | ||
if: github.event_name != 'pull_request' && github.ref_name == 'main' | ||
uses: google-github-actions/release-please-action@v4 | ||
with: | ||
release-type: ${{ env.PROJECT_TYPE }} | ||
- name: Log into registry ${{ env.REGISTRY }} | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ env.REGISTRY_USERNAME }} | ||
password: ${{ env.REGISTRY_PASSWORD }} | ||
- name: Prepare tags for Docker meta | ||
id: tags | ||
env: | ||
# When release please is skipped, these values will be empty | ||
is_release: ${{ steps.rp.outputs.release_created }} | ||
version: v${{ steps.rp.outputs.major }}.${{ steps.rp.outputs.minor }}.${{ steps.rp.outputs.patch }} | ||
run: | | ||
tags="" | ||
if [[ "$is_release" = 'true' ]]; then | ||
tags="type=semver,pattern={{version}},value=$version | ||
type=semver,pattern={{major}},value=$version | ||
type=semver,pattern={{major}}.{{minor}},value=$version" | ||
else | ||
tags="type=ref,event=branch | ||
type=ref,event=pr" | ||
fi | ||
{ | ||
echo 'tags<<EOF' | ||
echo "$tags" | ||
echo EOF | ||
} >> "$GITHUB_OUTPUT" | ||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: ${{ steps.tags.outputs.tags }} | ||
# necessary for multi-platform images | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
# necessary for multi-platform images | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
push: ${{ github.event_name != 'pull_request' }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
platforms: linux/amd64,linux/arm64,linux/arm/v7 |