Skip to content

Update alpine Docker tag to v3.23 #277

Update alpine Docker tag to v3.23

Update alpine Docker tag to v3.23 #277

# This is a basic workflow to help you get started with Actions
name: CI | Docker | estenrye/ansible
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
paths:
- docker/estenrye/ansible/**
- .github/workflows/CI-estenrye-ansible.yml
- .github/workflows/CI-Docker-Image-Build-Template.yml
pull_request:
branches: [ master ]
paths:
- docker/estenrye/ansible/**
- .github/workflows/CI-estenrye-ansible.yml
- .github/workflows/CI-Docker-Image-Build-Template.yml
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
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: ansible
DOCKER_ORGANIZATION_NAME: estenrye
PUSH_IMAGE: ${{ github.ref == 'refs/heads/master' }}
PLATFORMS: "linux/amd64,linux/arm64"
secrets:
docker_username: estenrye
docker_password: ${{ secrets.DOCKER_PASSWORD }}