Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge pull request #183 from JonathanBout/master #185

Merged
merged 12 commits into from
Aug 14, 2024
11 changes: 1 addition & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,6 @@ jobs:
contents: read
packages: write
steps:
# this step converts the repository name to lowercase as uppercase is not supported by docker
- name: Format repo slug
uses: actions/github-script@v7
id: repo_slug
with:
result-encoding: string
script: return `ghcr.io/${process.env.GITHUB_REPOSITORY.toLowerCase()}`
- name: Checkout Code
uses: actions/checkout@v4
- name: Login to GHCR
Expand All @@ -41,13 +34,11 @@ jobs:
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile
platforms: linux/arm64/v8
cache-from: type=gha
cache-to: type=gha,mode=max
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}