Merge pull request #102 from mythmon/experimental-2.1.7 #103
This file contains hidden or 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: Build Experimental | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - experimental/** | |
| - .github/workflows/build-experimental.yml | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v7 | |
| - | |
| name: Set up dynamic build ARGs | |
| id: getargs | |
| run: echo "version=$(cat ./experimental/VERSION)" >> $GITHUB_OUTPUT | |
| - | |
| name: Set up Docker metadata for Alpine | |
| id: meta-alpine | |
| uses: docker/metadata-action@v6 | |
| with: | |
| images: | | |
| ${{ github.repository }} | |
| ghcr.io/${{ github.repository }} | |
| tags: | | |
| type=raw,experimental-alpine | |
| # type=raw,latest-alpine | |
| # type=raw,${{ steps.getargs.outputs.version }}-alpine | |
| labels: | | |
| org.opencontainers.image.vendor=The Goofball - goofball222@gmail.com | |
| org.opencontainers.image.title=Factiorio Headless Server | |
| org.opencontainers.image.description=Factiorio Headless Server | |
| org.opencontainers.image.version=${{ steps.getargs.outputs.version }}-Alpine | |
| - | |
| name: Set up Docker metadata for Debian | |
| id: meta-debian | |
| uses: docker/metadata-action@v6 | |
| with: | |
| images: | | |
| ${{ github.repository }} | |
| ghcr.io/${{ github.repository }} | |
| tags: | | |
| type=raw,experimental | |
| # type=raw,latest | |
| # type=raw,${{ steps.getargs.outputs.version }} | |
| labels: | | |
| org.opencontainers.image.vendor=The Goofball - goofball222@gmail.com | |
| org.opencontainers.image.title=Factiorio Headless Server | |
| org.opencontainers.image.description=Factiorio Headless Server | |
| org.opencontainers.image.version=${{ steps.getargs.outputs.version }}-Debian | |
| - | |
| name: Set up QEMU | |
| uses: docker/setup-qemu-action@v4 | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - | |
| name: Login to DockerHub | |
| uses: docker/login-action@v4 | |
| with: | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - | |
| name: Login to GHCR | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - | |
| name: Build and push Alpine Docker image | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: ./experimental | |
| file: ./experimental/Dockerfile.alpine | |
| platforms: linux/amd64 | |
| push: ${{ github.event_name != 'pull_request' }} | |
| tags: ${{ steps.meta-alpine.outputs.tags }} | |
| labels: ${{ steps.meta-alpine.outputs.labels }} | |
| build-args: VERSION=${{ steps.getargs.outputs.version }} | |
| - | |
| name: Build and push Debian Docker image | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: ./experimental | |
| file: ./experimental/Dockerfile | |
| platforms: linux/amd64 | |
| push: ${{ github.event_name != 'pull_request' }} | |
| tags: ${{ steps.meta-debian.outputs.tags }} | |
| labels: ${{ steps.meta-debian.outputs.labels }} | |
| build-args: VERSION=${{ steps.getargs.outputs.version }} |