From adddae7e590976dc9da97d2e0201aa9fe1bd3e98 Mon Sep 17 00:00:00 2001 From: Mark Anderson-Trocme Date: Fri, 6 Dec 2024 15:38:04 -0500 Subject: [PATCH] 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