X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fm6w6.github.io;a=blobdiff_plain;f=.github%2Fworkflows%2Fsync_site.yml;h=5a071f6a09a7b811da93ac73eb73b76141732f28;hp=7eed3b1f7fb20d92e8da7efc4e03498eefd0d292;hb=94560cbcddbf7b66424162b53d0b9c01d10620a4;hpb=37a56c71ddf79794ffe4f9936141c38ec606c4c5 diff --git a/.github/workflows/sync_site.yml b/.github/workflows/sync_site.yml index 7eed3b1..5a071f6 100644 --- a/.github/workflows/sync_site.yml +++ b/.github/workflows/sync_site.yml @@ -6,10 +6,15 @@ on: workflows: [pages-build-deployment] types: [completed] +env: + SYNC_SECRET: ${{ secrets.SYNC_SECRET }} + SYNC_COMMAND: ${{ secrets.SYNC_COMMAND }} + jobs: sync: runs-on: ubuntu-latest steps: + - run: umask 0077 && echo "${{ env.SYNC_SECRET }}" >/tmp/sync_secret - uses: actions/github-script@v5 with: script: | @@ -25,7 +30,8 @@ jobs: artifact_id: artifact_id.data.artifacts[0].id, archive_format: "zip", }); - await exec.exec("tar xz", [], { + const + await exec.exec(process.env.SYNC_COMMAND, [], { input: Buffer.from(artifact.data) }); - run: ls -al