This is an automated email from the ASF dual-hosted git repository. juzhiyuan pushed a commit to branch juzhiyuan-patch-1 in repository https://gitbox.apache.org/repos/asf/apisix-website.git
commit 3599320bbb9d28bb6034972664801b09422b1255 Author: 琚致远 <[email protected]> AuthorDate: Mon Dec 28 18:28:34 2020 +0800 Create action-tester.yml --- .github/workflows/action-tester.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.github/workflows/action-tester.yml b/.github/workflows/action-tester.yml new file mode 100644 index 0000000..8e8c98c --- /dev/null +++ b/.github/workflows/action-tester.yml @@ -0,0 +1,25 @@ +name: Action Tester + +on: + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: make files + run: | + mkdir -p tester + echo -e "hello\nworld" >> tester/helloworld.txt + - name: GitHub Pages + uses: crazy-max/[email protected] + with: + build_dir: tester + target_branch: master + keep_history: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
