Updated install_channel_test [new-install] #191
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI (channels/test) | |
on: | |
push: | |
branches: | |
- releases/1.9 | |
- issues/865 | |
paths: | |
- "SharePointFramework/**" | |
- "Install/**" | |
- "Templates/**" | |
- .github/workflows/ci-channel-test.yml | |
env: | |
CI_CREDENTIALS: ${{ secrets.CI_DEV_CREDENTIALS }} | |
jobs: | |
build_release_package_test: | |
name: Build release package for test channel | |
runs-on: macos-latest | |
concurrency: | |
group: ${{ github.ref }}_build_release_package_for_test_channel | |
cancel-in-progress: true | |
if: "!contains(github.event.head_commit.message, '[skip-ci]')" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Set sha_short | |
id: vars | |
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ vars.NODE_VERSION }} | |
- name: Run Install/Build-Release.ps1 in CI mode for channel test | |
run: Install/Build-Release.ps1 -CI -SkipBundle -Channel test | |
shell: pwsh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: release-package-test | |
path: release | |
outputs: | |
sha_short: ${{ steps.vars.outputs.sha_short }} | |
# upgrade_channel_test: | |
# needs: [build_release_package_test] | |
# name: Upgrade (test) | |
# runs-on: macos-latest | |
# if: "!contains(github.event.head_commit.message, '[skip-upgrade]')" | |
# steps: | |
# - uses: actions/download-artifact@v3 | |
# with: | |
# name: release-package-test | |
# path: release | |
# - name: Upgrade | |
# run: release/Install.ps1 -Url "${{ vars.SP_URL_TEST }}" -Upgrade -CI ${{ env.CI_CREDENTIALS }} | |
# shell: powershell | |
install_channel_test: | |
needs: [build_release_package_test] | |
name: Install (test) | |
runs-on: macos-latest | |
if: "contains(github.event.head_commit.message, '[new-install]')" | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: release-package-test | |
path: release | |
- name: Install | |
run: release/Install.ps1 -Url "${{ vars.SP_URL_TEST }}_${{ needs.build_release_package_test.outputs.sha_short }}" -Title "Prosjektportalen 365 ${{ needs.build_release_package_test.outputs.sha_short }}" -CI ${{ env.CI_CREDENTIALS }} -SkipAppPackages -SkipSiteDesign -SkipTaxonomy -SkipSearchConfiguration | |
shell: powershell |