update tools #30
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: Mirror docker images | |
on: | |
repository_dispatch: | |
types: | |
- 'mirror-ghcr/*-*-*' | |
- 'mirrors/*-*-*' | |
push: | |
tags: | |
- '*-*-*' | |
jobs: | |
mirror-ghcr: | |
name: Release on GitHub package | |
runs-on: ubuntu-latest | |
steps: | |
- run: | |
echo TAG=${GITHUB_REF##*/} >> $GITHUB_ENV | |
if: github.event_name == 'push' | |
- run: | |
echo TAG=${REF##*/} >> $GITHUB_ENV | |
if: github.event_name == 'repository_dispatch' | |
env: | |
REF: ${{ github.event.action }} | |
- run: | | |
echo IMAGE=colomoto/colomoto-docker:${TAG} >> $GITHUB_ENV | |
echo GH_IMAGE=ghcr.io/colomoto/colomoto-docker:${TAG} >> $GITHUB_ENV | |
- run: docker pull ${IMAGE} | |
- run: docker tag $IMAGE $GH_IMAGE | |
- name: Login to GitHub Packages | |
uses: actions-hub/docker/login@master | |
env: | |
DOCKER_USERNAME: ${{ secrets.PAT_PACKAGES_USER }} | |
DOCKER_PASSWORD: ${{ secrets.PAT_PACKAGES }} | |
DOCKER_REGISTRY_URL: ghcr.io | |
- name: Push package | |
uses: actions-hub/docker@master | |
with: | |
args: push $GH_IMAGE |