X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=.github%2Fworkflows%2Fsync_site.yml;h=b5e18f881be2ecbf2ac71be9f5b4eb2a3065f88f;hb=HEAD;hp=f14288ef9e84bbf9ecd2afb847deb44c369bfda2;hpb=492a5e79cdb82e42d8b871e62de4bc528b6b5280;p=m6w6%2Fm6w6.github.io diff --git a/.github/workflows/sync_site.yml b/.github/workflows/sync_site.yml index f14288e..b5e18f8 100644 --- a/.github/workflows/sync_site.yml +++ b/.github/workflows/sync_site.yml @@ -1,35 +1,31 @@ - name: sync_site - on: workflow_run: workflows: [pages-build-deployment] types: [completed] - +env: + SYNC_SECRET: ${{ secrets.SYNC_SECRET }} + SYNC_COMMAND: ${{ secrets.SYNC_COMMAND }} jobs: sync: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v5 - id: shitshow + - run: umask 0077 && echo "${{ env.SYNC_SECRET }}" >/tmp/sync_secret + - uses: actions/github-script@v7 with: - result-encoding: string script: | const artifact_id = await github.rest.actions.listWorkflowRunArtifacts({ owner: context.repo.owner, repo: context.repo.repo, - run_id: context.payload.workflow.run_id, + run_id: context.payload.workflow_run.id, per_page: 1, }); - console.log(artifact_id); - const artifact_url = await github.rest.actions.downloadArtifact({ + const artifact = await github.rest.actions.downloadArtifact({ owner: context.repo.owner, repo: context.repo.repo, artifact_id: artifact_id.data.artifacts[0].id, archive_format: "zip", }); - console.log(artifact_url); - return artifact_url.headers["location"]; - - run: curl -sSLO ${{ steps.shitshow.outputs.result }} - - run: ls -al - + await exec.exec(process.env.SYNC_COMMAND, [], { + input: Buffer.from(artifact.data) + });