chore: apple music post
This commit is contained in:
parent
3215450a26
commit
bfc3db2a24
16 changed files with 299 additions and 51 deletions
18
.github/workflows/manual-build.yaml
vendored
18
.github/workflows/manual-build.yaml
vendored
|
@ -1,18 +0,0 @@
|
|||
name: Manual Vercel build
|
||||
env:
|
||||
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
|
||||
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
|
||||
on: [workflow_dispatch]
|
||||
jobs:
|
||||
cron:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Vercel CLI
|
||||
run: npm install --global vercel@latest
|
||||
- name: Pull Vercel Environment Information
|
||||
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
|
||||
- name: Build Project Artifacts
|
||||
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
|
||||
- name: Deploy Project Artifacts to Vercel
|
||||
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
|
4
.github/workflows/scheduled-build.yaml
vendored
4
.github/workflows/scheduled-build.yaml
vendored
|
@ -9,6 +9,4 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: POST to Build Hook
|
||||
env:
|
||||
BUILD_KEY: ${{ secrets.NETLIFY_BUILD_KEY }}
|
||||
run: curl -X POST -d {} https://api.netlify.com/build_hooks/$env:BUILD_KEY
|
||||
run: curl -X POST -d {} https://api.netlify.com/build_hooks/${{ secrets.NETLIFY_BUILD_KEY }}?trigger_branch=main&trigger_title=Scheduled+Github+build&clear_cache=true
|
Reference in a new issue