Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
Update js-api-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eromano authored Apr 13, 2022
1 parent 83db6f6 commit ee63a51
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/js-api-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,16 @@ jobs:
- name: Trigger ADF alpha
shell: bash
if: github.event.schedule == '0 3 * * *'
run: ./scripts/update-project.sh -p ${{ github.run_number }} -t ${{ secrets.BOT_GITHUB_TOKEN }} -v alpha
run: |
git config --global user.email ${{ secrets.BOT_GITHUB_EMAIL }}
git config --global user.name ${{ secrets.BOT_GITHUB_USERNAME }}
./scripts/update-project.sh -p ${{ github.run_number }} -t ${{ secrets.BOT_GITHUB_TOKEN }} -v alpha
- name: Trigger ADF master
shell: bash
if: github.ref == 'refs/heads/master'
run: ./scripts/update-project.sh -p ${{ github.run_number }} -t ${{ secrets.BOT_GITHUB_TOKEN }} -v latest
run: |
git config --global user.email ${{ secrets.BOT_GITHUB_EMAIL }}
git config --global user.name ${{ secrets.BOT_GITHUB_USERNAME }}
./scripts/update-project.sh -p ${{ github.run_number }} -t ${{ secrets.BOT_GITHUB_TOKEN }} -v latest

0 comments on commit ee63a51

Please sign in to comment.