Skip to content

Commit

Permalink
Sure up workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanrainer committed Aug 29, 2024
1 parent 358827f commit ca8ac82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
run: |
echo "desired_version=$(cat ${{ github.workspace }}/${{ matrix.changed_dir }}/config.yml | yq '.version')" >> "$GITHUB_OUTPUT"
echo "platforms=$(cat ${{ github.workspace }}/${{ matrix.changed_dir }}/config.yml | yq '.platforms | join(",")')" >> "$GITHUB_OUTPUT"
echo "description=$(cat ${{ github.workspace }}/${{ matrix.changed_dir }}/config.yml | yq '.description')" >> "$GITHUB_OUTPUT"
- name: Check Image to Build Does Not Already Exist
run: |
if docker manifest inspect ${{ env.NAMESPACED_REGISTRY }}/${{ matrix.changed_dir }}:${{ steps.extract_from_config_yaml.outputs.desired_version }} > /dev/null; then
Expand All @@ -71,11 +72,18 @@ jobs:
- name: Get Docker Metadata
id: meta
uses: docker/metadata-action@v5
env:
DOCKER_METADATA_PR_HEAD_SHA: true
with:
images: ${{ env.NAMESPACED_REGISTRY }}/${{ matrix.changed_dir }}
tags: |
type=semver,pattern={{version}},value=v${{ steps.calculate_version.outputs.version }}
type=sha
type=sha,prefix=
labels: |
org.opencontainers.image.title=${{ matrix.changed_dir }}
org.opencontainers.image.description=${{ steps.extract_from_config_yaml.outputs.description }}
org.opencontainers.image.vendor=Apollo GraphQL
org.opencontainers.image.licenses=MIT
- name: Build and Push Docker image
id: push
uses: docker/build-push-action@v6
Expand All @@ -93,13 +101,13 @@ jobs:
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true
- name: Create Git Tag
if: ${{ github.event_name != 'pull_request' }}
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
default_bump: false
default_prerelease_bump: false
custom_tag: ${{ matrix.changed_dir }}/v${{ steps.calculate_version.outputs.version }}
dry_run: ${{ github.event_name == 'pull_request' }}
- name: Create GitHub Release
if: ${{ github.event_name != 'pull_request' }}
uses: comnoco/[email protected]
Expand Down
1 change: 1 addition & 0 deletions binary-builder-glibc/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
version: 0.1.0
description: Builder image for Rust binaries that must be built with glibc 2.28
platforms:
- linux/arm64
- linux/amd64
1 change: 1 addition & 0 deletions binary-builder-musl/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
version: 0.1.0
description: Builder image for Rust binaries that must be built with musl
platforms:
- linux/arm64
- linux/amd64

0 comments on commit ca8ac82

Please sign in to comment.