Skip to content

fixed: errors in docker compose file #22

fixed: errors in docker compose file

fixed: errors in docker compose file #22

Workflow file for this run

name: Publish Docker Image
on:
- push
jobs:
push-to-ghcr:
name: Push tools Docker image to GitHub Packages
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Get short SHA
run: |
echo "sha=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV
- name: Log in to GitHub Docker Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build container image
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile.tools
push: true
tags: |
ghcr.io/${{ github.repository }}/tools:${{ env.sha }}
ghcr.io/${{ github.repository }}/tools:${{ env.branch }}