Skip to content

Commit

Permalink
upgrade action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zero9178 committed May 9, 2024
1 parent b61586a commit 10f7c3c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/toolchain.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: toolchain.yaml
name: Build Docker toolchain image
on:
push:
paths:
Expand All @@ -23,20 +23,21 @@ jobs:
- name: Disk usage after freeing up space
run: df -h
# Actually build the Docker container
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: docker/setup-buildx-action@v1

- name: GHCR Log-in
uses: docker/login-action@v1
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5.3.0
with:
context: ${{github.workspace}}/runtime/toolchain/
file: ${{github.workspace}}/runtime/toolchain/Dockerfile
push: true
tags: ghcr.io/opencompl/Quidditch/toolchain:${{ github.ref_name }}
tags: ghcr.io/opencompl/quidditch/toolchain:${{ github.ref_name }}

0 comments on commit 10f7c3c

Please sign in to comment.