Replace Slurm with Kubernetes midnight commit. #1
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
# This GitHub Action generates and publishes a Docker image of this repository | |
# to the GitHub Packages repository. It is triggered when a new package is released. | |
# | |
# Based on the Babel release.yaml file at | |
# https://github.com/TranslatorSRI/Babel/blob/86a1d0cbb5055043b152011ff004f27ed7d254cc/.github/workflows/release.yaml | |
name: 'Release a new version to Github Packages' | |
on: | |
push: | |
release: | |
types: [published] | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
push_to_registry: | |
name: Push Docker image to GitHub Packages tagged with "latest" and version number. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
# When debugging/bugfixing Omnicorp, it's helpful to have the entire Git history | |
# with you. This also makes it possible to fetch additional branches from | |
# GitHub if you need to. | |
with: | |
fetch-depth: 0 | |
- name: Get the version | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | |
ghcr.io/${{ github.repository }} | |
- name: Login to ghcr | |
uses: docker/login-action@v1 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push to GitHub Packages | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: BRANCH_NAME=${{ github.event.release.target_commitish }} |