From a1fa674fe9e944db027690c8147079d501e01994 Mon Sep 17 00:00:00 2001 From: Iain Sproat <68657+iainsproat@users.noreply.github.com> Date: Fri, 4 Aug 2023 15:37:33 +0100 Subject: [PATCH] fix(action.yaml): update speckle_automate_url missed in last PR (#5) --- README.md | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 73e02a1..4f2ae89 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This repository contains the source code for the Speckle Automate GitHub Composi ### Inputs -#### `speckle_server_url` +#### `speckle_automate_url` Speckle Automate URL which we will publish our Function to. Should include the `https://` protocol and not end with a trailing slash. **The token must be stored in GitHub as an [encrypted secret](https://docs.github.com/en/actions/security-guides/encrypted-secrets)** diff --git a/action.yml b/action.yml index 4084676..e528718 100644 --- a/action.yml +++ b/action.yml @@ -53,7 +53,7 @@ runs: - name: Log in to Speckle Automate Docker registry uses: docker/login-action@v2.2.0 with: - registry: ${{ inputs.speckle_server_url }} + registry: ${{ inputs.speckle_automate_url }} username: ${{ inputs.speckle_token }} password: ${{ inputs.speckle_token }} - name: Build and push Docker image