Initial 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
################################################################################## | |
# References: | |
# Built-in arguments: | |
# - https://docs.github.com/en/actions/learn-github-actions/contexts | |
# Built-in environment variables: | |
# - https://docs.github.com/en/enterprise-cloud@latest/actions/learn-github-actions/variables#default-environment-variables | |
# | |
# Develop this workflow locally with the following command: | |
# ~$ gh extension install nektos/gh-act | |
# ~$ gh act --env-file .env -s GITHUB_TOKEN=$GITHUB_TOKEN -s PULUMI_ACCESS_TOKEN=$PULUMI_ACCESS_TOKEN | |
name: konductor | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.devcontainer.json' | |
- 'docs/**' | |
- '**.md' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.devcontainer.json' | |
- 'docs/**' | |
- '**.md' | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
actions: write | |
steps: | |
- | |
name: Git Checkout | |
uses: actions/checkout@v4 | |
id: git | |
with: | |
ref: 'main' | |
submodules: 'recursive' | |
clean: '' | |
- | |
name: Setup QEMU | |
uses: docker/setup-qemu-action@v3 | |
id: qemu | |
- | |
name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
id: buildx | |
- | |
name: repository_owner to lower case | |
id: repository_owner | |
uses: Entepotenz/change-string-case-action-min-dependencies@v1 | |
with: | |
string: ${{ github.repository_owner }} | |
- | |
name: repository to lower case | |
id: repository | |
uses: Entepotenz/change-string-case-action-min-dependencies@v1 | |
with: | |
string: ${{ github.repository }} | |
- | |
if: ${{ github.event_name == 'push' }} && ${{ github.ref == 'refs/heads/main' }} | |
name: Registry Login | |
id: docker-login | |
run: | | |
echo ${{ secrets.GHA_GITHUB_TOKEN }} | docker login ghcr.io -u usrbinkat --password-stdin | |
## DOES NOT WORK | |
#uses: docker/login-action@v3 | |
#with: | |
# registry: ghcr.io | |
# username: usrbinkat | |
# password: ${{ github.token }} | |
- | |
name: Container Build | |
uses: docker/build-push-action@v5 | |
id: container-build | |
with: | |
push: false | |
cache-to: type=inline | |
cache-from: type=registry,ref=ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }} | |
context: docker | |
file: docker/Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
annotations: '"annotations": { "org.opencontainers.image.description": "ContainerCraft Konductor DevOps Container" }' | |
tags: "ghcr.io/${{ steps.repository.outputs.lowercase }}:latest,ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }}" | |
- | |
if: ${{ github.event_name == 'push' }} && ${{ github.ref == 'refs/heads/main' }} | |
name: Container Push | |
uses: docker/build-push-action@v5 | |
id: container-push | |
with: | |
push: true | |
cache-from: type=inline | |
context: docker | |
file: docker/Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
annotations: '"annotations": { "org.opencontainers.image.description": "ContainerCraft Konductor DevOps Container" }' | |
tags: "ghcr.io/${{ steps.repository.outputs.lowercase }}:latest,ghcr.io/${{ steps.repository.outputs.lowercase }}:${{ github.sha }}" |