Skip to content

Commit

Permalink
feat: committing to fake master
Browse files Browse the repository at this point in the history
  • Loading branch information
signorecello committed Nov 24, 2023
1 parent 05373b3 commit 0d5aca9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ jobs:
- name: Cut a new version
working-directory: ./docs
run: yarn docusaurus docs:version ${{ inputs.tag }}
run: yarn docusaurus docs:version ${{ needs.release-please.outputs.tag-name }}

- name: Commit new documentation version
run: |
git config --local user.name 'signorecello'
git config --local user.email '[email protected]'
git add .
git commit -m "chore(docs): cut new docs version for tag ${{ github.event.inputs.tag }}"
git commit -m "chore(docs): cut new docs version for tag ${{ needs.release-please.outputs.tag-name }}"
git push
- name: Build docs for deploying
Expand All @@ -122,7 +122,7 @@ jobs:
# production-deploy: true
github-token: ${{ secrets.GITHUB_TOKEN }}
enable-github-deployment: false
deploy-message: "Deploy from GitHub Actions for tag ${{ inputs.tag }}"
deploy-message: "Deploy from GitHub Actions for tag ${{ needs.release-please.outputs.tag-name }}"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
Expand Down

0 comments on commit 0d5aca9

Please sign in to comment.