Build Image #38
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
name: Build Image | |
on: | |
schedule: | |
- cron: '35 21 * * 2' | |
workflow_dispatch: | |
env: | |
# The default repo env will be 'ComputeStacks'; uppercase is not allowed. | |
GH_REPO: computestacks/cs-docker-pma | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Docker buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log into Github Registry | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Log into DockerHub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
id: build-and-push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: | | |
cmptstks/phpmyadmin:v2 | |
cmptstks/phpmyadmin:latest | |
ghcr.io/${{ env.GH_REPO }}:v2 | |
ghcr.io/${{ env.GH_REPO }}:latest | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |