-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (32 loc) · 991 Bytes
/
docker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 }}