2021-02-25 23:41:22 +00:00
|
|
|
name: Publish Docker image
|
|
|
|
on:
|
2024-03-15 04:34:45 +00:00
|
|
|
push:
|
2024-03-15 03:36:58 +00:00
|
|
|
branches:
|
2024-03-15 03:45:48 +00:00
|
|
|
- main
|
2021-02-25 23:41:22 +00:00
|
|
|
jobs:
|
|
|
|
push_to_registry:
|
|
|
|
name: Push Docker image to GitHub Packages
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2024-07-01 16:19:00 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-08-15 03:24:15 +00:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2024-07-01 17:00:59 +00:00
|
|
|
uses: docker/metadata-action@v5
|
2021-02-25 23:41:22 +00:00
|
|
|
with:
|
2022-08-15 03:24:15 +00:00
|
|
|
images: |
|
2024-06-18 05:42:18 +00:00
|
|
|
git.wbrawner.com/wbrawner/interval-timer
|
2022-08-15 03:24:15 +00:00
|
|
|
tags: |
|
|
|
|
type=schedule
|
|
|
|
type=ref,event=branch
|
|
|
|
type=ref,event=pr
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}
|
|
|
|
type=sha
|
2024-06-18 05:21:48 +00:00
|
|
|
- name: Set up Docker context
|
|
|
|
run: docker context create builders
|
2022-08-15 03:24:15 +00:00
|
|
|
- name: Set up Docker Buildx
|
2024-06-18 03:52:32 +00:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2024-06-18 05:21:48 +00:00
|
|
|
with:
|
|
|
|
endpoint: builders
|
2022-08-15 03:24:15 +00:00
|
|
|
- name: Login to GitHub Container Registry
|
2024-07-01 17:00:56 +00:00
|
|
|
uses: docker/login-action@v3
|
2022-08-15 03:24:15 +00:00
|
|
|
with:
|
2024-06-18 03:32:11 +00:00
|
|
|
registry: git.wbrawner.com
|
2021-02-25 23:41:22 +00:00
|
|
|
username: ${{ github.actor }}
|
2024-07-02 12:22:13 +00:00
|
|
|
password: ${{ secrets.FORGEJO_TOKEN }}
|
2022-08-15 03:24:15 +00:00
|
|
|
- name: Build and push
|
2024-07-01 16:19:17 +00:00
|
|
|
uses: docker/build-push-action@v6
|
2022-08-15 03:24:15 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|