From 0bc98f78aee2447ad67d77137a906d7b00bf226e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Jedlicska?= Date: Thu, 22 Jun 2023 13:19:56 +0200 Subject: [PATCH] update action def --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0b3314f..47595ed 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,6 +3,7 @@ on: # rebuild any PRs and any branch changes pull_request: push: branches: + - main jobs: integration-test: # make sure the action works on a clean machine without building @@ -14,21 +15,20 @@ jobs: repository: 'specklesystems/speckle-automate-github-action' path: 'github-action' - uses: ./github-action - description: 'publish the metadata about the function to Speckle Automate' with: speckle_server_url: 'https://automate.speckle.dev' - speckle_token: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_PUBLISH_TOKEN_FOR_GETTING_STARTED_TYPESCRIPT }} - speckle_function_id: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_ID_FOR_GETTING_STARTED_TYPESCRIPT }} + speckle_token: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_PUBLISH_TOKEN }} + speckle_function_id: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_ID }} speckle_function_path: 'tasks/getting-started/typescript' - name: Log in to Speckle Automate Docker registry uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a with: registry: 'https://automate.speckle.dev' - username: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_PUBLISH_TOKEN_FOR_GETTING_STARTED_TYPESCRIPT }} - password: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_PUBLISH_TOKEN_FOR_GETTING_STARTED_TYPESCRIPT }} + username: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_PUBLISH_TOKEN }} + password: ${{ secrets.SPECKLE_AUTOMATE_FUNCTION_PUBLISH_TOKEN }} - name: Build and push Docker image uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 with: context: . - file: ./tasks/getting-started/typescript/Dockerfile + file: ./Dockerfile push: true