From b7ba86c93150948f81ddc7fb297ff1bde7c5a44d Mon Sep 17 00:00:00 2001 From: rstular Date: Sat, 23 May 2020 19:02:19 +0200 Subject: CI workflow --- .github/workflows/ci-deploy.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/ci-deploy.yml diff --git a/.github/workflows/ci-deploy.yml b/.github/workflows/ci-deploy.yml new file mode 100644 index 0000000..067acf6 --- /dev/null +++ b/.github/workflows/ci-deploy.yml @@ -0,0 +1,36 @@ +name: CI - copy dist/ to master + +on: + push: + branches: + - test1 + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout to release branch + uses: actions/checkout@v2 + with: + ref: test1 + - name: Copy dist/ folder + run: | + cp -r dist /tmp/ + - name: Checkout to master + uses: actions/checkout@v2 + with: + ref: master + - name: Replace files + run: | + rm -r * + mv /tmp/dist/* . + - name: Commit files + run: | + git config --local user.email "action@github.com" + git config --local user.name "GitHub CI Action" + git add -A + git commit -m "Mirror change from release" + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} -- cgit v1.2.3