2021-09-09 13:28:02 +03:00
|
|
|
name: Publish Docker image
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2023-09-23 05:41:41 +03:00
|
|
|
env:
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
|
2021-09-09 13:28:02 +03:00
|
|
|
jobs:
|
|
|
|
push_to_registry:
|
2023-09-23 05:41:41 +03:00
|
|
|
name: Push Docker image to GHCR
|
2021-09-09 13:28:02 +03:00
|
|
|
runs-on: ubuntu-latest
|
2023-09-23 05:41:41 +03:00
|
|
|
if: github.repository == 'transfem-org/Sharkey'
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
2021-09-09 13:28:02 +03:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2023-09-25 10:05:02 +03:00
|
|
|
uses: actions/checkout@v4.1.0
|
2023-02-14 02:59:50 +02:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
2023-09-13 10:08:22 +03:00
|
|
|
uses: docker/setup-buildx-action@v3.0.0
|
2023-02-14 02:59:50 +02:00
|
|
|
with:
|
2023-09-23 07:52:59 +03:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2021-09-09 13:28:02 +03:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
2023-09-13 10:08:30 +03:00
|
|
|
uses: docker/metadata-action@v5
|
2021-09-09 13:28:02 +03:00
|
|
|
with:
|
2023-09-23 05:41:41 +03:00
|
|
|
images: ${{ env.REGISTRY }}/transfem-org/sharkey
|
2022-12-06 21:32:03 +02:00
|
|
|
tags: |
|
|
|
|
type=edge
|
|
|
|
type=ref,event=pr
|
|
|
|
type=ref,event=branch
|
|
|
|
type=semver,pattern={{version}}
|
|
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
|
|
type=semver,pattern={{major}}
|
2023-09-23 05:41:41 +03:00
|
|
|
- name: Log in to GHCR
|
2023-09-13 10:08:10 +03:00
|
|
|
uses: docker/login-action@v3
|
2021-09-09 13:28:02 +03:00
|
|
|
with:
|
2023-09-23 05:41:41 +03:00
|
|
|
registry: ${{ env.REGISTRY }}
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and Push to GHCR
|
2023-09-13 10:08:00 +03:00
|
|
|
uses: docker/build-push-action@v5
|
2021-09-09 13:28:02 +03:00
|
|
|
with:
|
2023-02-14 02:59:50 +02:00
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
2021-09-09 13:28:02 +03:00
|
|
|
context: .
|
|
|
|
push: true
|
2023-02-14 02:59:50 +02:00
|
|
|
platforms: ${{ steps.buildx.outputs.platforms }}
|
|
|
|
provenance: false
|
2023-09-23 05:41:41 +03:00
|
|
|
tags: ${{ env.REGISTRY }}/transfem-org/sharkey:stable
|
|
|
|
labels: stable
|
2023-02-14 02:59:50 +02:00
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
2023-09-26 18:51:19 +03:00
|
|
|
- name: Push update to server
|
|
|
|
if: steps.build.outcome == 'success'
|
|
|
|
uses: indiesdev/curl@v1.1
|
|
|
|
with:
|
|
|
|
url: ${{ secrets.AUTO_UPDATE_URL }}
|
|
|
|
method: POST
|
|
|
|
timeout: 600000
|