From 23ba112f671c3b7f286834a3ae8ff8232f274a42 Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 22 May 2022 00:28:04 +0200 Subject: [PATCH] i came to the conclusion that gh workflows suck --- .github/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e733d7b..3d21a44 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -36,7 +36,7 @@ jobs: push: true tags: | ghcr.io/janderedev/automod-api:latest - ghcr.io/janderedev/automod-api:$(git rev-parse --short "$GITHUB_SHA") + ghcr.io/janderedev/automod-api:${{ GITHUB_SHA }} publish_web: runs-on: ubuntu-latest @@ -65,7 +65,7 @@ jobs: push: true tags: | ghcr.io/janderedev/automod-web:latest - ghcr.io/janderedev/automod-web:$(git rev-parse --short "$GITHUB_SHA") + ghcr.io/janderedev/automod-web:${{ GITHUB_SHA }} publish_bridge: runs-on: ubuntu-latest @@ -94,7 +94,7 @@ jobs: push: true tags: | ghcr.io/janderedev/automod-bridge:latest - ghcr.io/janderedev/automod-bridge:$(git rev-parse --short "$GITHUB_SHA") + ghcr.io/janderedev/automod-bridge:${{ GITHUB_SHA }} publish_bot: runs-on: ubuntu-latest @@ -123,4 +123,4 @@ jobs: push: true tags: | ghcr.io/janderedev/automod-bot:latest - ghcr.io/janderedev/automod-bot:$(git rev-parse --short "$GITHUB_SHA") + ghcr.io/janderedev/automod-bot:${{ GITHUB_SHA }}