Am revizuit imnurile pentru seara de tineret de luni, 25 septembrie. … #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'verified/**' | |
jobs: | |
DeployToGDrive: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout bes-lyrics repo | |
uses: actions/checkout@v3 | |
with: | |
path: bes-lyrics | |
sparse-checkout: | | |
verified | |
- name: Checkout bes-migrator repo | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT_BES_PROJECTS }} | |
repository: ioanlucut/bes-propres7-migrator | |
path: bes-propres7-migrator | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Run GDrive remote deployment from bes-propres7-migrator | |
working-directory: ./bes-propres7-migrator | |
run: | | |
npm i && npm run convert:remote | |
env: | |
GDRIVE_BES_CLIENT_ID: ${{ secrets.GDRIVE_BES_CLIENT_ID }} | |
GDRIVE_BES_CLIENT_SECRET: ${{ secrets.GDRIVE_BES_CLIENT_SECRET }} | |
GDRIVE_BES_CLIENT_REFRESH_TOKEN: ${{ secrets.GDRIVE_BES_CLIENT_REFRESH_TOKEN }} | |
CI: true |