Adding ghe-manage-v1-upload-an-enterprise-license.sh for #178 #87
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: Deploy to Release1 | |
on: | |
pull_request_target: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: release1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Run configure.py | |
run: | | |
python3 configure.py --hostname api.github.com \ | |
--enterprise-name gm3dmo-enterprise-cloud-testing \ | |
--org forest-town \ | |
--repo pwr-release1 \ | |
--default-repo-visibility public \ | |
--token ${{ secrets.FORESTPAT }} \ | |
--webhook-url ${{ vars.WEBHOOK }} \ | |
--configure-app yes \ | |
--app-id 1 \ | |
--installation-id 1 \ | |
--client-id client_id \ | |
--team-members "pipcrispy robin-of-loxley roger-de-courcey" \ | |
--team-admin "roger-de-courcey" \ | |
--default-committer "pipcrispy" \ | |
--private-pem-file test.pem \ | |
--primer "list-config" \ | |
--curl_custom_flags '--fail-with-body --no-progress-meter' | |
- name: Delete repo-release1 | |
run: | | |
echo "Deleting repo-release1" | |
./delete-repo.sh | |
- name: Power default testcase | |
env: | |
TERM: xterm # Set TERM environment variable | |
run: | | |
echo "Running build-testcase" | |
./build-testcase |