mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
Additional Integration tests (#123)
This commit is contained in:
parent
8a621223c0
commit
a53cac04e5
109
.github/workflows/integration-beta.yml
vendored
Normal file
109
.github/workflows/integration-beta.yml
vendored
Normal file
@ -0,0 +1,109 @@
|
|||||||
|
name: integration-tests-beta
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: 10 15 * * 0-6
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- dev
|
||||||
|
- releases/v3
|
||||||
|
- releases/v3-test
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
# 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
|
||||||
|
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
|
||||||
|
|
||||||
|
# Deploys using checkout@v2 with a GITHUB_TOKEN.
|
||||||
|
integration-checkout-v2:
|
||||||
|
needs: integration-checkout-v1
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Build and Deploy
|
||||||
|
uses: JamesIves/github-pages-deploy-action@releases/v3-test
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
BRANCH: gh-pages
|
||||||
|
FOLDER: integration
|
||||||
|
BASE_BRANCH: dev
|
||||||
|
TARGET_FOLDER: montezuma2
|
||||||
|
|
||||||
|
|
||||||
|
# Deploys using a container that requires you to install rsync.
|
||||||
|
integration-container:
|
||||||
|
needs: integration-checkout-v2
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container:
|
||||||
|
image: ruby:2.6
|
||||||
|
env:
|
||||||
|
LANG: C.UTF-8
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Install rsync
|
||||||
|
run: |
|
||||||
|
apt-get update && apt-get install -y rsync
|
||||||
|
|
||||||
|
- name: Build and Deploy
|
||||||
|
uses: JamesIves/github-pages-deploy-action@releases/v3-test
|
||||||
|
with:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
BRANCH: gh-pages
|
||||||
|
FOLDER: integration
|
||||||
|
BASE_BRANCH: dev
|
||||||
|
TARGET_FOLDER: montezuma2
|
||||||
|
|
||||||
|
# Deploys using the CLEAN option.
|
||||||
|
integration-clean:
|
||||||
|
needs: [integration-checkout-v1, integration-checkout-v2, integration-container]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Build and Deploy
|
||||||
|
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
|
||||||
|
|
||||||
|
# Deploys to a branch that doesn't exist.
|
||||||
|
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
|
||||||
|
uses: JamesIves/github-pages-deploy-action@releases/v3-test
|
||||||
|
with:
|
||||||
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
||||||
|
BRANCH: integration-test-delete-test
|
||||||
|
FOLDER: integration
|
||||||
|
BASE_BRANCH: dev
|
||||||
|
CLEAN: true
|
||||||
|
|
||||||
|
- name: Cleanup Generated Branch
|
||||||
|
uses: dawidd6/action-delete-branch@v2.0.1
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
branches: integration-test-delete-test
|
15
.github/workflows/integration.yml
vendored
15
.github/workflows/integration.yml
vendored
@ -6,7 +6,6 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- dev
|
- dev
|
||||||
- releases/v3
|
- releases/v3
|
||||||
- releases/v3-test
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# Deploys using checkout@v1 with an ACCESS_TOKEN.
|
# Deploys using checkout@v1 with an ACCESS_TOKEN.
|
||||||
@ -17,7 +16,7 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Build and Deploy
|
- name: Build and Deploy
|
||||||
uses: JamesIves/github-pages-deploy-action@releases/v3-test
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||||
with:
|
with:
|
||||||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
||||||
BRANCH: gh-pages
|
BRANCH: gh-pages
|
||||||
@ -34,7 +33,7 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Build and Deploy
|
- name: Build and Deploy
|
||||||
uses: JamesIves/github-pages-deploy-action@releases/v3-test
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||||
with:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
BRANCH: gh-pages
|
BRANCH: gh-pages
|
||||||
@ -60,7 +59,7 @@ jobs:
|
|||||||
apt-get update && apt-get install -y rsync
|
apt-get update && apt-get install -y rsync
|
||||||
|
|
||||||
- name: Build and Deploy
|
- name: Build and Deploy
|
||||||
uses: JamesIves/github-pages-deploy-action@releases/v3-test
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||||
with:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
BRANCH: gh-pages
|
BRANCH: gh-pages
|
||||||
@ -77,7 +76,7 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Build and Deploy
|
- name: Build and Deploy
|
||||||
uses: JamesIves/github-pages-deploy-action@releases/v3-test
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||||
with:
|
with:
|
||||||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
||||||
BRANCH: gh-pages
|
BRANCH: gh-pages
|
||||||
@ -94,10 +93,10 @@ jobs:
|
|||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Build and Deploy
|
- name: Build and Deploy
|
||||||
uses: JamesIves/github-pages-deploy-action@releases/v3-test
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
||||||
with:
|
with:
|
||||||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
||||||
BRANCH: integration-test-delete-test
|
BRANCH: integration-test-delete-prod
|
||||||
FOLDER: integration
|
FOLDER: integration
|
||||||
BASE_BRANCH: dev
|
BASE_BRANCH: dev
|
||||||
CLEAN: true
|
CLEAN: true
|
||||||
@ -106,4 +105,4 @@ jobs:
|
|||||||
uses: dawidd6/action-delete-branch@v2.0.1
|
uses: dawidd6/action-delete-branch@v2.0.1
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
branches: integration-test-delete-test
|
branches: integration-test-delete-prod
|
Loading…
Reference in New Issue
Block a user