Skip to content

Commit

Permalink
Update README (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
qetza committed May 9, 2024
1 parent b0891ac commit 767111f
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -20,6 +20,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Setup nodejs 16.x
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -53,6 +58,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: 'Hack: manual download of node6 (linux)'
if: runner.os == 'Linux'
run: |
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,7 @@
# Changelog
## 5.0.8
- Add links in README to migration documentation.

## 5.0.7
Task 6.0.6
- Fix default case sensitivity in sources and additional variables matching ([#29](https://github.com/qetza/replacetokens-task/issues/29)).
Expand Down
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -49,6 +49,10 @@ The task was completely rewritten to use the npm package [@qetza/replacetokens](
- renamed output _transformExecutedCount_ to _transforms_
- renamed output _defaultValueCount_ to _defaults_

You can find some documentation to help migrate here: [Migrate from v5 to v6](https://github.com/qetza/replacetokens-task/discussions/34)

If you are migrating from **v3 to v6** make sure to read this documentation first: [Migrate from v3 to v5](https://github.com/qetza/replacetokens-task/discussions/33)

## Usage
### Inputs
```yaml
Expand Down
4 changes: 4 additions & 0 deletions tasks/ReplaceTokensV6/README.md
Expand Up @@ -49,6 +49,10 @@ The task was completely rewritten to use the npm package [@qetza/replacetokens](
- renamed output _transformExecutedCount_ to _transforms_
- renamed output _defaultValueCount_ to _defaults_

You can find some documentation to help migrate here: [Migrate from v5 to v6](https://github.com/qetza/replacetokens-task/discussions/34)

If you are migrating from **v3 to v6** make sure to read this documentation first: [Migrate from v3 to v5](https://github.com/qetza/replacetokens-task/discussions/33)

## Usage
### Inputs
```yaml
Expand Down
2 changes: 1 addition & 1 deletion vss-extension.json
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "replacetokens",
"name": "Replace Tokens",
"version": "5.0.7",
"version": "5.0.8",
"public": true,
"publisher": "qetza",
"targets": [
Expand Down

0 comments on commit 767111f

Please sign in to comment.