Update _load.yml

This commit is contained in:
Aleksandr Statciuk 2022-03-17 12:29:05 +03:00
parent 36d66a9ac5
commit 7cef74b586

View file

@ -18,13 +18,13 @@ jobs:
- run: npm run api:load - run: npm run api:load
- uses: tibdex/github-app-token@v1 - uses: tibdex/github-app-token@v1
if: ${{ !env.ACT }} if: ${{ !env.ACT }}
id: create-app-token id: create-ffmpeg-token
with: with:
app_id: ${{ secrets.APP_ID }} app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }} private_key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: FedericoCarboni/setup-ffmpeg@v1 - uses: FedericoCarboni/setup-ffmpeg@v1
with: with:
token: ${{ steps.create-app-token.outputs.token }} token: ${{ steps.create-ffmpeg-token.outputs.token }}
- uses: actions/setup-node@v2 - uses: actions/setup-node@v2
if: ${{ !env.ACT }} if: ${{ !env.ACT }}
with: with:
@ -35,12 +35,18 @@ jobs:
- run: NODE_OPTIONS=--insecure-http-parser npm run cluster:load -- --timeout=30000 --cluster-id=1 - run: NODE_OPTIONS=--insecure-http-parser npm run cluster:load -- --timeout=30000 --cluster-id=1
- run: npm run programs:save - run: npm run programs:save
- run: npm run guides:update - run: npm run guides:update
- uses: tibdex/github-app-token@v1
if: ${{ !env.ACT }}
id: create-deploy-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: JamesIves/github-pages-deploy-action@v4.2.5 - uses: JamesIves/github-pages-deploy-action@v4.2.5
if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
with: with:
branch: gh-pages branch: gh-pages
folder: .gh-pages folder: .gh-pages
token: ${{ steps.create-app-token.outputs.token }} token: ${{ steps.create-deploy-token.outputs.token }}
git-config-name: iptv-bot[bot] git-config-name: iptv-bot[bot]
git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com
commit-message: '[Bot] Deploy to GitHub Pages' commit-message: '[Bot] Deploy to GitHub Pages'