run_build #581
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: CI-Docker | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
repository_dispatch: | |
types: [run_build] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
DISPATCH_TOKEN: ${{ secrets.DISPATCH_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Extract DOCKER_TAG using tag name | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
printf '%s\n' "DOCKER_TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV | |
- name: Use default DOCKER_TAG | |
if: startsWith(github.ref, 'refs/tags/') != true | |
run: | | |
printf '%s\n' "DOCKER_TAG=latest" >> $GITHUB_ENV | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
if: env.DOCKER_USERNAME != null | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Login to Github Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set docker tag list to include DockerHub if credentials available | |
if: env.DOCKER_USERNAME != null | |
run: | | |
printf '%s\n' "DOCKER_TAG_LIST=ghcr.io/${{ github.repository }}:${{ env.DOCKER_TAG }},${{ github.repository }}:${{ env.DOCKER_TAG }}" >> $GITHUB_ENV | |
- name: Set docker tag list to not include DockerHub if credentials not available | |
if: env.DOCKER_USERNAME == null | |
run: | | |
printf '%s\n' "DOCKER_TAG_LIST=ghcr.io/${{ github.repository }}:${{ env.DOCKER_TAG }}" >> $GITHUB_ENV | |
- name: Build and Push to container registry | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
tags: ${{ env.DOCKER_TAG_LIST }} | |
build-args: | | |
BASE_DOCKER_IMAGE=ghcr.io/${{ github.repository_owner }}/ps2toolchain:${{ env.DOCKER_TAG }} | |
- name: Send Compile action | |
run: | | |
export DISPATCH_ACTION="$(printf '%s\n' run_build)" | |
printf '%s\n' "NEW_DISPATCH_ACTION=$DISPATCH_ACTION" >> $GITHUB_ENV | |
- name: Repository Dispatch to ps2sdk-ports | |
uses: peter-evans/repository-dispatch@v3 | |
if: env.DISPATCH_TOKEN != null | |
with: | |
repository: ${{ github.repository_owner }}/ps2sdk-ports | |
token: ${{ secrets.DISPATCH_TOKEN }} | |
event-type: ${{ env.NEW_DISPATCH_ACTION }} | |
client-payload: '{"ref": "${{ github.ref }}"}' | |
- name: Repository Dispatch to ps2-packer | |
uses: peter-evans/repository-dispatch@v3 | |
if: env.DISPATCH_TOKEN != null | |
with: | |
repository: ${{ github.repository_owner }}/ps2-packer | |
token: ${{ secrets.DISPATCH_TOKEN }} | |
event-type: ${{ env.NEW_DISPATCH_ACTION }} | |
client-payload: '{"ref": "${{ github.ref }}"}' |