From 9d8564f314ca181b19a7dc756f570b662b5a0d4a Mon Sep 17 00:00:00 2001 From: Mihovil Ilakovac Date: Mon, 26 Aug 2024 15:42:39 +0200 Subject: [PATCH] Use org --- .github/workflows/deploy.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 16dac77..6644b09 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,12 +7,14 @@ on: env: WASP_TELEMETRY_DISABLED: 1 + WASP_VERSION: "0.14.0" SERVER_APP_NAME: "render-ghcr-server" # After you know the server URL, you can replace the placeholder with the actual URL SERVER_APP_URL: "http://localhost:3000" CLIENT_APP_NAME: "render-ghcr-client" DOCKER_REGISTRY: "ghcr.io" - DOCKER_REGISTRY_USERNAME: ${{ github.actor }} + # If you are in an organisation, use ${{ github.org }} instead of ${{ github.actor }} + DOCKER_REGISTRY_USERNAME: ${{ github.org }} DOCKER_REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} jobs: @@ -48,7 +50,7 @@ jobs: - name: Install Wasp shell: bash - run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh + run: curl -sSL https://get.wasp-lang.dev/installer.sh | sh -s -- -v ${{ env.WASP_VERSION }} - name: Build Wasp app shell: bash