Tag Latest Toolchain #6
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: Tag Latest Toolchain | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: | |
- Generate Toolchain Docker Images | |
types: | |
- completed | |
permissions: | |
packages: write | |
contents: read | |
jobs: | |
tag-latest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
# Log in to GitHub Container Registry | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# Log in to Docker Hub | |
- name: Log in to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} | |
# Tag latest toolchains | |
- name: Create and Push Docker Latest Manifest | |
run: | | |
docker buildx imagetools create \ | |
--tag ghcr.io/kallistiosunchained/dc-toolchain:latest \ | |
--tag ${{ secrets.DOCKER_HUB_USERNAME }}/dc-toolchain:latest \ | |
ghcr.io/kallistiosunchained/dc-toolchain:14.2-stable-arm64 \ | |
ghcr.io/kallistiosunchained/dc-toolchain:14.2-stable-amd64 \ | |
${{ secrets.DOCKER_HUB_USERNAME }}/dc-toolchain:14.2-stable-arm64 \ | |
${{ secrets.DOCKER_HUB_USERNAME }}/dc-toolchain:14.2-stable-amd64 |