From c33ddcb8b32f2a1c12a0cd4325c31e782945f729 Mon Sep 17 00:00:00 2001 From: Alexander Bentkamp Date: Wed, 10 May 2023 12:26:06 +0200 Subject: [PATCH] try to fix github actions --- .github/workflows/build.yml | 5 +++++ .github/workflows/export.yml | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6b2148b..4010208 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,3 +12,8 @@ jobs: - name: build docker image run: docker build . --file Dockerfile --tag nng:latest + + - name: Store docker container as an artifact + uses: ishworkh/docker-image-artifact-upload@v1 + with: + image: "nng:latest" diff --git a/.github/workflows/export.yml b/.github/workflows/export.yml index 6bfe484..1792868 100644 --- a/.github/workflows/export.yml +++ b/.github/workflows/export.yml @@ -6,12 +6,10 @@ jobs: runs-on: ubuntu-latest steps: - name: View Progress - run: echo "$env.GITHUB_REPOSITORY ${{env.GITHUB_REPOSITORY}}" - - name: View Progress - run: echo $env.GITHUB_REPOSITORY${{env.GITHUB_REPOSITORY}} + run: echo "View progress at https://adam.math.hhu.de/import/status/$GITHUB_REPOSITORY" - name: Export into Game Server uses: fjogeleit/http-request-action@v1 with: - url: "https://adam.math.hhu.de/import/trigger/${{ env.GITHUB_REPOSITORY }}" + url: "https://adam.math.hhu.de/import/trigger/$GITHUB_REPOSITORY" - name: View Progress run: echo "View progress at https://adam.math.hhu.de/import/status/$GITHUB_REPOSITORY"