github-pages-deploy-action/.github/workflows/integration.yml

82 lines
2.2 KiB
YAML
Raw Normal View History

2019-11-19 23:11:21 +08:00
name: integration-tests
on:
2019-09-06 10:34:59 +08:00
schedule:
2019-11-22 23:04:37 +08:00
- cron: 10 15 * * 0-6
push:
branches:
- dev
- releases/v3
2020-01-12 08:30:07 +08:00
- releases/v3-test
jobs:
2020-01-12 08:24:34 +08:00
# Deploys using checkout@v1 with an ACCESS_TOKEN.
integration-checkout-v1:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build and Deploy
2020-01-12 08:25:32 +08:00
uses: JamesIves/github-pages-deploy-action@releases/v3-test
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: integration
BASE_BRANCH: dev
TARGET_FOLDER: montezuma
2020-01-12 08:24:34 +08:00
# Deploys using checkout@v2 with a GITHUB_TOKEN.
integration-checkout-v2:
2020-01-12 08:13:51 +08:00
needs: integration-checkout-v1
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build and Deploy
2020-01-12 08:25:32 +08:00
uses: JamesIves/github-pages-deploy-action@releases/v3-test
with:
2020-01-12 08:32:17 +08:00
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: integration
BASE_BRANCH: dev
TARGET_FOLDER: montezuma2
2020-01-12 08:24:34 +08:00
# Deploys using the CLEAN option.
integration-clean:
2020-01-12 08:13:51 +08:00
needs: [integration-checkout-v1, integration-checkout-v2]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build and Deploy
2020-01-12 08:25:32 +08:00
uses: JamesIves/github-pages-deploy-action@releases/v3-test
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: integration
BASE_BRANCH: dev
CLEAN: true
2020-01-12 08:21:50 +08:00
2020-01-12 08:24:34 +08:00
# Deploys to a branch that doesn't exist.
2020-01-12 08:21:50 +08:00
integration-branch-creation:
needs: [integration-checkout-v1, integration-checkout-v2]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build and Deploy
2020-01-12 08:25:32 +08:00
uses: JamesIves/github-pages-deploy-action@releases/v3-test
2020-01-12 08:21:50 +08:00
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: integration-test-delete-test
FOLDER: integration
BASE_BRANCH: dev
CLEAN: true
- name: Cleanup Generated Branch
2020-01-12 08:22:25 +08:00
run: |
git push origin --delete integration-test-delete-test