Skip to content

fix(docker-image): update eclipse-temurin docker tag to v11.0.25_9-jre #74

fix(docker-image): update eclipse-temurin docker tag to v11.0.25_9-jre

fix(docker-image): update eclipse-temurin docker tag to v11.0.25_9-jre #74

name: Bedrock-connect Build image
on:
workflow_dispatch:
push:
branches:
- main
paths:
- ".github/workflows/run-bedrock-connect_docker-build.yaml"
- "unraid-homelab/tools/minecraft/bedrock-connect/*"
env:
ORG_ACCOUNT: "zaggash"
IMAGE_NAME: "bedrock-connect"
CONTEXT: "./unraid-homelab/tools/minecraft/bedrock-connect/"
DOCKERFILE: "./unraid-homelab/tools/minecraft/bedrock-connect/Dockerfile"
jobs:
extract-tag:
name: Extract Application Tag
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Get Bedrock-connect version
run: |
TAG=$(grep -Po 'CONNECT=\K.*' ${{ env.DOCKERFILE }} )
echo "TAG_ENV=$TAG" >> $GITHUB_ENV
outputs:
org-account: ${{ env.ORG_ACCOUNT }}
image-name: ${{ env.IMAGE_NAME }}
tag: ${{ env.TAG_ENV }}
context: ${{ env.CONTEXT }}
dockerfile: ${{ env.DOCKERFILE}}
build-push:
name: Build & Push
needs: extract-tag
uses: zaggash/gh-workflows/.github/workflows/action_docker-build-repo.yaml@main
with:
github-account: ${{ needs.extract-tag.outputs.org-account }}
image-name: ${{ needs.extract-tag.outputs.image-name }}
tag: ${{ needs.extract-tag.outputs.tag }}
context: ${{ needs.extract-tag.outputs.context }}
dockerfile: ${{ needs.extract-tag.outputs.dockerfile }}
secrets:
gh_username: ${{ secrets.GH_USERNAME }}
gh_token: ${{ secrets.GH_TOKEN }}