2024-11-13 09:46:32 +00:00
|
|
|
name: Publish Docker image Dotclear unstable
|
2024-11-13 09:09:20 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
2024-11-13 09:46:32 +00:00
|
|
|
push_to_docker_hub:
|
|
|
|
name: Push Docker image to registry
|
2024-11-13 09:09:20 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
packages: write
|
|
|
|
contents: read
|
|
|
|
attestations: write
|
|
|
|
id-token: write
|
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Log in to Docker Hub
|
|
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
2024-11-13 09:46:32 +00:00
|
|
|
- name: Build and push Docker image
|
2024-11-13 09:09:20 +00:00
|
|
|
id: push
|
|
|
|
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
push: true
|
2024-11-13 09:46:32 +00:00
|
|
|
tags: jcpd/docker-dotclear:test
|
2024-11-13 09:39:03 +00:00
|
|
|
labels: docker-dotclear:test
|
2024-11-13 09:09:20 +00:00
|
|
|
build-args: CANAL=unstable
|
|
|
|
|
|
|
|
- name: Generate artifact attestation
|
|
|
|
uses: actions/attest-build-provenance@v1
|
|
|
|
with:
|
2024-11-13 09:50:40 +00:00
|
|
|
subject-name: jcpd/docker-dotclear:test
|
2024-11-13 09:09:20 +00:00
|
|
|
subject-digest: ${{ steps.push.outputs.digest }}
|
|
|
|
push-to-registry: true
|