Skip to content

Commit

Permalink
release v1.1.0 with 0.4.0 version support
Browse files Browse the repository at this point in the history
  • Loading branch information
aatarasoff committed Dec 7, 2023
1 parent 2119554 commit aab4d2d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
id: test-action
uses: ./
with:
version: v0.3.2
version: v0.4.0

- name: Check pbuf cli
id: check-pbuf-cli
Expand All @@ -63,7 +63,7 @@ jobs:
id: test-action-with-config
uses: ./
with:
version: v0.3.2
version: v0.4.0
pbuf_token: "hello_token"

- name: Check .netrc
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The `pbuf-setup` GitHub Action is designed to install `pbuf-cli`, a command-line
- **Token Auth Support**: Supports usage of a `pbuf_token` for operations requiring authentication with the PBUF registry.

## Inputs
- **`version`**: The version of the CLI to install. The default is 'v0.3.2'. This input is optional.
- **`version`**: The version of the CLI to install. The default is 'v0.4.0'. This input is optional.
- **`pbuf_token`**: The API token for authenticating with the PBUF registry. This input is optional.

## Usage
Expand All @@ -23,9 +23,9 @@ To use this action, include it in your workflow `.yml` file with the necessary i
```yml
steps:
- name: Install pbuf-cli
uses: pbufio/pbuf-setup-action@v1.0.0
uses: pbufio/pbuf-setup-action@v1.1.0
with:
version: 'v0.3.2' # Optional. Specify the desired version
version: 'v0.4.0' # Optional. Specify the desired version
pbuf_token: ${{ secrets.PBUF_TOKEN }} # Optional, your PBUF API token

- name: Register Module
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inputs:
version:
description: The version of the CLI
required: false
default: 'v0.3.2'
default: 'v0.4.0'
pbuf_token:
description: The API token to use with PBUF registry.
required: false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pbuf-setup-action",
"description": "GitHub Action to setup pbuf-cli",
"version": "1.0.0",
"version": "1.1.0",
"author": "[email protected]",
"exports": {
".": "./dist/index.js"
Expand Down

0 comments on commit aab4d2d

Please sign in to comment.