From 5798c2c1650ccbbc00489ccb73aa6cbd57eb9c91 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 21 Jan 2022 16:45:14 +0100 Subject: [PATCH] Create sync_site.yml --- .github/workflows/sync_site.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/sync_site.yml diff --git a/.github/workflows/sync_site.yml b/.github/workflows/sync_site.yml new file mode 100644 index 0000000..8c362d9 --- /dev/null +++ b/.github/workflows/sync_site.yml @@ -0,0 +1,17 @@ + +name: sync_site + +on: + workflow_run: + workflows: [pages-build-deployment] + types: [completed] + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v2 + with: + name: github-pages + - run: tar tf artifact.tar + -- 2.30.2