Simplify CI
All checks were successful
Build Docker image and publish / docker (push) Successful in 1m19s

This commit is contained in:
Ethanell 2024-02-16 23:05:53 +01:00
parent a9b12afe85
commit f2c5dd8e49

View file

@ -26,17 +26,30 @@ jobs:
echo "DOCKER_TAG=$DOCKER_REPOSITORY/$(echo "$GITHUB_REPOSITORY" | tr '[:upper:]' '[:lower:]'):latest" >> "$GITHUB_ENV" echo "DOCKER_TAG=$DOCKER_REPOSITORY/$(echo "$GITHUB_REPOSITORY" | tr '[:upper:]' '[:lower:]'):latest" >> "$GITHUB_ENV"
apk add --no-cache git nodejs apk add --no-cache git nodejs
- name: "Login to Docker repository" - name: "Setup cache"
id: login uses: actions/cache@v4
run: docker login -u "$GITHUB_ACTOR" -p "${{ secrets.PACKAGE_TOKEN }}" "$DOCKER_REPOSITORY" with:
path: "${{ env.GITHUB_WORKSPACE }}/.docker_cache"
key: "docker"
- name: "Get repo" - name: "Get repo"
uses: https://code.forgejo.org/actions/checkout@v4 uses: actions/checkout@v4
- name: "Build Docker image" - name: Set up Docker Buildx
id: build uses: https://github.com/docker/setup-buildx-action@v3
run: docker buildx build --pull --platform linux/amd64 -t "$DOCKER_TAG" .
- name: "Publish Docker image" - name: "Login to Docker repository"
id: push uses: https://github.com/docker/login-action@v3
run: docker push "$DOCKER_TAG" with:
registry: "${{ env.DOCKER_REPOSITORY }}"
username: "${{ env.GITHUB_ACTOR }}"
password: "${{ secrets.PACKAGE_TOKEN }}"
- name: "Build and push"
uses: https://github.com/docker/build-push-action@v5
with:
context: .
push: true
tags: "${{ env.DOCKER_TAG }}"
cache-from: "type=local,src=${{ env.GITHUB_WORKSPACE }}/.docker_cache"
cache-to: "type=local,dest=${{ env.GITHUB_WORKSPACE }}/.docker_cache"