Update Timewarrior in Docker images #714
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Timewarrior in Docker images | |
on: | |
workflow_dispatch: | |
inputs: | |
release: | |
type: choice | |
description: Timewarrior release | |
options: | |
- develop | |
- stable | |
schedule: | |
- cron: 0 2 * * * | |
env: | |
REGISTRY: "ghcr.io" | |
RELEASE: ${{ github.event.inputs.release || 'develop' }} | |
jobs: | |
build-and-push-docker-images: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- name: Create lowercase repository name | |
run: | | |
GHCR_REPOSITORY="${{ github.repository_owner }}" | |
echo "REPOSITORY=${GHCR_REPOSITORY,,}" >> ${GITHUB_ENV} | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install cosign | |
uses: sigstore/[email protected] | |
- name: Log into registry ${{ env.REGISTRY }} | |
uses: docker/[email protected] | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Taskwarrior [develop]/Timewarrior [${{ env.RELEASE }}] Docker image | |
id: build-and-push-develop | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: "./test/docker/task-timew.dockerfile" | |
push: true | |
build-args: | | |
TASK_IMAGE=${{ env.REGISTRY }}/${{ env.REPOSITORY }}/task:develop | |
TIMEW_IMAGE=${{ env.REGISTRY }}/${{ env.REPOSITORY }}/timew:${{ env.RELEASE }} | |
tags: ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/task-timew:develop-${{ env.RELEASE }} | |
- name: Sign the published Docker image | |
env: | |
COSIGN_EXPERIMENTAL: "true" | |
run: cosign sign ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/task-timew@${{ steps.build-and-push-develop.outputs.digest }} | |
- name: Build and push Taskwarrior [stable]/Timewarrior [${{ env.RELEASE }}] Docker image | |
id: build-and-push-stable | |
uses: docker/[email protected] | |
with: | |
context: . | |
file: "./test/docker/task-timew.dockerfile" | |
push: true | |
build-args: | | |
TASK_IMAGE=${{ env.REGISTRY }}/${{ env.REPOSITORY }}/task:stable | |
TIMEW_IMAGE=${{ env.REGISTRY }}/${{ env.REPOSITORY }}/timew:${{ env.RELEASE }} | |
tags: ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/task-timew:stable-${{ env.RELEASE }} | |
- name: Sign the published Docker image | |
env: | |
COSIGN_EXPERIMENTAL: "true" | |
run: cosign sign ${{ env.REGISTRY }}/${{ env.REPOSITORY }}/task-timew@${{ steps.build-and-push-stable.outputs.digest }} |