File size: 547 Bytes
1dc487d
0313122
 
 
 
1dc487d
e69a2db
0313122
 
e69a2db
0313122
83b3608
0313122
1b73e22
e69a2db
 
1dc487d
0313122
e69a2db
1dc487d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# このワークフローは、gitコマンドを使用しデプロイを行います。
name: "Deploy"
on:
  push:
    branches: [ "main" ]
  # ワークフローの手動実行を許可する
  workflow_dispatch:

jobs:
  sync-to-hub:
    runs-on: ubuntu-latest
    environment: production
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0
          lfs: true

      - name: Push to hub
        run: git push --force https://${{ secrets.HF_USER_NAME }}:${{ secrets.HF_TOKEN }}@${{ secrets.HF_SPACE_URL }} main