Skip to content

use redirect instead stream #39

use redirect instead stream

use redirect instead stream #39

Workflow file for this run

name: Deploy Server Docker Image
on:
push:
branches:
- "main"
paths-ignore:
- 'frontend/**'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set outputs
id: vars
run: |
echo "date=$(date +%Y-%m-%dT%H-%M-%S)" >> "${GITHUB_OUTPUT}"
echo "sha_short=$(git rev-parse --short HEAD)" >> "${GITHUB_OUTPUT}"
- 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.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build_tezos_snapshot_server
uses: docker/build-push-action@v3
with:
file: server.Dockerfile
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-snapshot-server:latest
ghcr.io/marigold-dev/tezos-snapshot-server:${{ steps.vars.outputs.date }}-${{ steps.vars.outputs.sha_short }}