GetHourly #2860
This file contains hidden or 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
| # 除了北京时间的 00:10 和 12:10,剩下的每小时执行一次 | |
| name: GetHourly | |
| on: | |
| schedule: | |
| - cron: '1 0,2,6,8,10,12,14,18,20,22 * * *' | |
| workflow_dispatch: | |
| # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
| permissions: | |
| contents: write | |
| pages: write | |
| id-token: write | |
| concurrency: | |
| group: "pages" | |
| cancel-in-progress: false | |
| jobs: | |
| # Single deploy job since we're just deploying | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: What was your mission in Shanghai?! | |
| uses: MathRobin/timezone-action@v1.1 | |
| with: | |
| timezoneLinux: 'Asia/Shanghai' | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Checkout VRChat-World-Weather-Creator repository | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: Sonic853/VRChat-World-Weather-Creator | |
| path: VWWC | |
| - name: Read updatetime.txt before running Deno | |
| id: read_before_updatetime | |
| run: echo "date=$(cat updatetime.txt)" >> $GITHUB_OUTPUT | |
| - name: Install Deno | |
| uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: vx.x.x | |
| - name: Run Deno Cache | |
| run: deno cache VWWC/create.ts | |
| - name: Run Deno script | |
| run: deno run --allow-read --allow-write --allow-net --allow-env VWWC/create.ts --mode=qwnow,qwhourly --export=${{ secrets.EXPORT }} --saveurl=${{ secrets.SAVEURL }} --accuweather=${{ secrets.ACCUWEATHER }} --qweather=${{ secrets.QWEATHER }} --free=${{ secrets.FREE }} --project=${{ secrets.PROJECT }} --key=${{ secrets.KEY }} --private=${{ secrets.PRIVATEKEY }} --apihost=${{ secrets.APIHOST }} | |
| - name: Read updatetime.txt after running Deno | |
| id: read_after_updatetime | |
| run: echo "date=$(cat updatetime.txt)" >> $GITHUB_OUTPUT | |
| - name: Commit changes updatetime | |
| if: steps.read_before_updatetime.outputs.date != steps.read_after_updatetime.outputs.date | |
| run: | | |
| git config --local user.email "Sonic853@qq.com" && git config --local user.name "853 Action" | |
| git add updatetime.txt | |
| git commit -m "Update updatetime.txt" | |
| git push | |
| - name: Setup Pages | |
| uses: actions/configure-pages@v5 | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| # Upload entire repository | |
| path: './pages' | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 | |
| - name: Deploy to Server | |
| uses: wlixcc/SFTP-Deploy-Action@v1.2.5 | |
| with: | |
| username: '${{ secrets.SERVER_USER }}' | |
| server: '${{ secrets.SERVER_IP }}' | |
| ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} | |
| password: ${{ secrets.SERVER_PASS }} | |
| local_path: './pages/*' | |
| remote_path: '${{ secrets.SERVER_REMOTE_PATH }}/${{ github.event.repository.name }}' | |
| sftpArgs: '-o ConnectTimeout=5' | |
| delete_remote_files: true |