increase state and cache time #9
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: Create Docker Images | |
on: | |
push: | |
branches: | |
- "main" | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set outputs | |
id: vars | |
run: | | |
echo "date=$(date +%s)" >> "${GITHUB_OUTPUT}" | |
echo "sha_short=$(git rev-parse --short HEAD)" >> "${GITHUB_OUTPUT}" | |
- name: Build and push | |
id: docker_build_tezos_api | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
# Only push if on main branch | |
push: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} | |
tags: | | |
ghcr.io/marigold-dev/tezos-api:latest | |
ghcr.io/marigold-dev/tezos-api:latest-${{ steps.vars.outputs.sha_short }}-${{ steps.vars.outputs.date }} | |