X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=.github%2Fworkflows%2Fsync_site.yml;h=7eed3b1f7fb20d92e8da7efc4e03498eefd0d292;hb=37a56c71ddf79794ffe4f9936141c38ec606c4c5;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..7eed3b1 100644 --- a/.github/workflows/sync_site.yml +++ b/.github/workflows/sync_site.yml @@ -11,25 +11,22 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/github-script@v5 - id: shitshow 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 }} + await exec.exec("tar xz", [], { + input: Buffer.from(artifact.data) + }); - run: ls -al