Update alpine Docker tag to v3.23 #155
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: CI | Docker | docker/estenrye/ubuntu-autoinstall-iso | |
| on: | |
| # run it on push to the default repository branch | |
| push: | |
| paths: | |
| - docker/estenrye/ubuntu-autoinstall-iso/** | |
| - .github/workflows/CI-estenrye-ubuntu-autoinstall-iso.yml | |
| - .github/workflows/CI-Docker-Image-Build-Template.yml | |
| # run it during pull request | |
| pull_request: | |
| paths: | |
| - docker/estenrye/ubuntu-autoinstall-iso/** | |
| - .github/workflows/CI-estenrye-ubuntu-autoinstall-iso.yml | |
| - .github/workflows/CI-Docker-Image-Build-Template.yml | |
| jobs: | |
| # define job to build and publish docker image | |
| build-and-push-docker-image: | |
| name: Build Docker image and push to repositories | |
| uses: ./.github/workflows/CI-Docker-Image-Build-Template.yml | |
| with: | |
| DOCKER_IMAGENAME: ubuntu-autoinstall-iso | |
| DOCKER_ORGANIZATION_NAME: estenrye | |
| PUSH_IMAGE: ${{ github.ref == 'refs/heads/master' }} | |
| PLATFORMS: "linux/amd64,linux/arm64,linux/arm/v7" | |
| secrets: | |
| docker_username: estenrye | |
| docker_password: ${{ secrets.DOCKER_PASSWORD }} |