fix: Debug #49
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
name: GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set | |
env: | |
API_KEY: ${{ secrets.API_KEY }} | |
SPOTIFY_API_KEY: ${{ secrets.SPOTIFY_API_KEY }} | |
SPOTIFY_CLIENT_ID: ${{ secrets.SPOTIFY_CLIENT_ID }} | |
run: | | |
echo "$SPOTIFY_CLIENT_ID" | |
export API_KEY=$API_KEY | |
export "SPOTIFY_API_KEY=$SPOTIFY_API_KEY | |
export SPOTIFY_CLIENT_ID=$SPOTIFY_CLIENT_ID | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm install -g ts-node && npm install --legacy-peer-deps && npm i -D yargs dotenv @angular-builders/custom-webpack dotenv-webpack --legacy-peer-deps | |
- name: Build | |
run: npm run build:prod | |
- name: Deploy | |
if: success() | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
API_KEY: ${{ secrets.API_KEY }} | |
SPOTIFY_API_KEY: ${{ secrets.SPOTIFY_API_KEY }} | |
SPOTIFY_CLIENT_ID: ${{ secrets.SPOTIFY_CLIENT_ID }} | |
publish_dir: dist/ErasTune | |
enable_jekyll: true | |