release: v0.2.7 #82
Workflow file for this run
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: Publish AlmaLinux | |
on: | |
push: | |
tags: | |
- v* | |
# schedule: | |
# - cron: "0 1 * * 2" # at 01:00 on Tuesday | |
workflow_dispatch: | |
inputs: | |
reason: | |
description: 'Reason' | |
required: false | |
default: 'Manual trigger' | |
jobs: | |
almalinux: | |
name: Publish AlmaLinux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# https://github.com/docker/metadata-action | |
# Tags: | |
# type=semver,pattern=...: on tag pushed, with a valid `semver`, the new image | |
# will have tags `x`, `x.y`, `x.y.z`. Pre-release GIT tag will tag image | |
# with only pre-release tag, e.g. `x.y.z-beta.67`, and not the others | |
# Flavor: | |
# `latest` will tag the image with `latest` | |
- name: Set tags for Docker images | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: registry.cern.ch/cernopendata/cernopendata-portal | |
tags: | | |
type=semver,pattern={{major}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}}.{{minor}}.{{patch}} | |
type=semver,pattern={{version}} | |
type=schedule,pattern={{date 'YYYYMMDD'}} | |
flavor: | | |
latest=true | |
- name: Publish AlmaLinux | |
uses: ./.github/actions/publish-almalinux | |
with: | |
registry-username: ${{ secrets.CERN_REGISTRY_USERNAME }} | |
registry-password: ${{ secrets.CERN_REGISTRY_PASSWORD }} | |
docker-tags: ${{ steps.meta.outputs.tags }} | |
docker-labels: ${{ steps.meta.outputs.labels }} |