Babel v1.5.0 #33
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
# 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 NameRes release.yaml file at | |
# https://github.com/TranslatorSRI/NameResolution/blob/a4f72e3c283dcb40a7280b55650dae63c5625e82/.github/workflows/release.yml | |
name: 'Release a new version to Github Packages' | |
on: | |
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 Babel, 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 }} |