From adddae7e590976dc9da97d2e0201aa9fe1bd3e98 Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Fri, 6 Dec 2024 15:38:04 -0500 Subject: [PATCH 1/3] update readme to include organization --- README.md | 6 ++++-- action.yml | 3 +++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 29c3024..42f3de4 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,10 @@ and add the following step to your workflow: ```yaml - name: Install and login with up - uses: upbound/action-up@v0.1.0 + uses: upbound/action-up@v1.0.0 with: token: ${{ secrets.UP_API_TOKEN }} + organization: my-org ``` `up` will now be available in the environement and can be used in follow steps. @@ -21,9 +22,10 @@ As an example, you can set your Upbound context: ```yaml - name: Install and login with up - uses: upbound/action-up@v0.1.0 + uses: upbound/action-up@v1.0.0 with: token: ${{ secrets.UP_API_TOKEN }} + organization: my-org - name: Set Upbound context run: up ctx my-org/upbound-gcp-us-west-1/default/my-ctp diff --git a/action.yml b/action.yml index 3f584c4..2ed0923 100644 --- a/action.yml +++ b/action.yml @@ -23,6 +23,9 @@ inputs: description: 'Organization to select when login' default: '' +branding: + color: 'purple' + runs: using: node20 main: dist/index.js From e0bd069f209f727301d85e7ff6932414aa5963c4 Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Fri, 6 Dec 2024 15:39:33 -0500 Subject: [PATCH 2/3] use @v1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 42f3de4..d403a08 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ and add the following step to your workflow: ```yaml - name: Install and login with up - uses: upbound/action-up@v1.0.0 + uses: upbound/action-up@v1 with: token: ${{ secrets.UP_API_TOKEN }} organization: my-org @@ -22,7 +22,7 @@ As an example, you can set your Upbound context: ```yaml - name: Install and login with up - uses: upbound/action-up@v1.0.0 + uses: upbound/action-up@v1 with: token: ${{ secrets.UP_API_TOKEN }} organization: my-org From 34471cbe8e2c6355723b22d994ece5dc3ac95154 Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Fri, 6 Dec 2024 15:42:21 -0500 Subject: [PATCH 3/3] pretty --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2ed0923..c318c29 100644 --- a/action.yml +++ b/action.yml @@ -24,7 +24,7 @@ inputs: default: '' branding: - color: 'purple' + color: 'purple' runs: using: node20