Add CITATION.cff according to zenodo record #907
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: Docker Images | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
setup: | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
outputs: | |
docker-push: ${{ steps.vars.outputs.docker-push }} | |
oci-reference: ${{ steps.vars.outputs.oci-reference }} | |
steps: | |
- id: vars | |
run: | | |
echo ::set-output name=github-ref::${{ github.ref }} | |
echo ::set-output name=docker-push::${{ github.ref == 'refs/heads/main' }} | |
echo ::set-output name=oci-reference::ghcr.io/$( echo "${{ github.repository}}" | tr '[:upper:]' '[:lower:]' ) | |
- id: vars-dump | |
run: | | |
echo "steps.vars.github-ref = ${{ steps.vars.outputs.github-ref }}" | |
echo "steps.vars.docker-push = ${{ steps.vars.outputs.docker-push }}" | |
echo "steps.vars.oci-reference = ${{ steps.vars.outputs.oci-reference }}" | |
build: | |
needs: setup | |
permissions: | |
contents: read | |
packages: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Python Poetry Action | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.4.0 | |
- name: Build images | |
shell: bash | |
run: | | |
task \ | |
OCI_REFERENCE="${{ needs.setup.outputs.oci-reference }}" \ | |
docker:latest docker:unstable | |
push: | |
if: "${{ needs.setup.outputs.docker-push == 'true' }}" | |
needs: [ setup, build ] | |
permissions: | |
id-token: write | |
packages: write | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Python Poetry Action | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.4.0 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push images | |
shell: bash | |
run: | | |
task \ | |
DOCKER_PUSH=true \ | |
OCI_REFERENCE="${{ needs.setup.outputs.oci-reference }}" \ | |
docker:latest docker:unstable |