Skip to content

update dockerfile

update dockerfile #292

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
# on:
# pull_request:
env:
DOCKER_REGISTRY: ghcr.io
jobs:
publish-apollo:
name: Publish apollo
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Docker login
uses: docker/login-action@v1
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ${{ env.DOCKER_REGISTRY }}
- uses: benjlevesque/[email protected]
id: short-sha
with:
length: 7
- uses: olegtarasov/[email protected]
id: tag-name
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
context: .
file: apollo/Dockerfile
tags: |
${{ env.DOCKER_REGISTRY }}/${{ github.repository }}:sha-${{ steps.short-sha.outputs.sha }}
${{ env.DOCKER_REGISTRY }}/${{ github.repository }}:${{ steps.tag-name.outputs.tag }}