Skip to content

Commit

Permalink
Merge branch 'master' into feature/use-actor-env-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
jirimoravcik committed Jul 20, 2023
2 parents 090b961 + 2c292ba commit 9a85be9
Show file tree
Hide file tree
Showing 10 changed files with 5,479 additions and 4,020 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}

- name: Use Node.js 16
uses: actions/setup-node@v2-beta
Expand Down Expand Up @@ -65,3 +65,8 @@ jobs:

- name: Deploy artifact to GitHub Pages
uses: actions/deploy-pages@v2

- name: Invalidate CloudFront cache
run: gh workflow run invalidate.yaml --repo apify/apify-docs-private
env:
GITHUB_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Build module
run: npm run build
- name: Publish to NPM
run: NODE_AUTH_TOKEN=${{secrets.NPM_TOKEN}} npm publish --tag ${{ env.RELEASE_TAG }}
run: NODE_AUTH_TOKEN=${{ secrets.APIFY_SERVICE_ACCOUNT_NPM_TOKEN }} npm publish --tag ${{ env.RELEASE_TAG }}
- # Latest version is tagged by the release process so we only tag beta here.
name: Tag Version
if: env.RELEASE_TAG == 'beta'
Expand Down
Loading

0 comments on commit 9a85be9

Please sign in to comment.