Skip to content

Bump h2 from 0.3.21 to 0.3.24 #9

Bump h2 from 0.3.21 to 0.3.24

Bump h2 from 0.3.21 to 0.3.24 #9

Workflow file for this run

name: Build & publish fpush ctr image
on:
push:
branches:
- master
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
env:
REGISTRY: ghcr.io
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
with:
fetch-depth: 0
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ env.REGISTRY }}/${{ github.repository }}
- name: Build image
uses: docker/build-push-action@v3
with:
context: .
file: docker/Dockerfile
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64
load: true
tags: ${{ steps.meta.outputs.tags }}
- name: Log in to ${{ env.REGISTRY }}
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
## currently not pushing the image to the github registry.
# - name: Build & push image
# uses: docker/build-push-action@v3
# if: github.event_name == 'push'
# with:
# context: .
# file: docker/Dockerfile
# labels: ${{ steps.meta.outputs.labels }}
# platforms: linux/amd64
# push: true
# tags: ${{ steps.meta.outputs.tags }}