Skip to content

Commit

Permalink
use the correct repo name in the examples
Browse files Browse the repository at this point in the history
  • Loading branch information
phish108 committed Mar 27, 2020
1 parent bcf21c1 commit ff3d8f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
npm ci
npm run package
npm --no-git-tag-version --allow-same-version version ${{ steps.tagger.outputs.new-tag }}
sed -ire "s/phish108\/autotag-action@[0-9]*\.[0-9]*\.[0-9]*/phish\/autotag-action@${{ steps.tagger.outputs.new-tag }}/g" README.md
sed -ire "s/phish108\/autotag-action@[0-9]*\.[0-9]*\.[0-9]*/phish108\/autotag-action@${{ steps.tagger.outputs.new-tag }}/g" README.md
git commit -m "updated dist file for $GITSHA" -a
env:
GITSHA: ${{ github.sha }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nodejs_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
npm ci
npm run package
npm --no-git-tag-version --allow-same-version version ${{ steps.tagger.outputs.new-tag }}
sed -ire "s/phish108\/autotag-action@[0-9]*\.[0-9]*\.[0-9]*/phish108\/autotag-action@${{ steps.tagger.outputs.new-tag }}/g" README.md
git commit -m "updated dist file for $GITSHA" -a
env:
GITSHA: ${{ github.sha }}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
node-version:
- 12
steps:
- uses: phish/[email protected]
- uses: phish108/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN}}
```
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- run: npm test
env:
CI: "true"
- uses: phish/[email protected]
- uses: phish108/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN}}
with-v: "true"
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
- uses: phish/[email protected]
- uses: phish108/[email protected]
id: tagger
env:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -218,7 +218,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: phish/[email protected]
- uses: phish108/[email protected]
env:
github-token: ${{ secrets.GITHUB_TOKEN }}
branch: master
Expand Down

0 comments on commit ff3d8f4

Please sign in to comment.