Skip to content

Commit

Permalink
[PERF-314] Move TC build to Github Actions (#93)
Browse files Browse the repository at this point in the history
* Create File preRelease

* adding a strategy matrix to yaml

* Testing yml

* INCLUDE DEPLOY

* Package Pre Release

* Cleanup Code

* leave Package to run manually
  • Loading branch information
JBrenesSimpat authored Oct 18, 2023
1 parent f1ea350 commit bc04db2
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/Package_pre_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# SPDX-License-Identifier: Apache-2.0
# Licensed to the Ed-Fi Alliance under one or more agreements.
# The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
# See the LICENSE and NOTICES files in the project root for more information.

name: Package Pre-Release-Code
on:
workflow_dispatch:

env:
PACKAGE_NAME: Suite_3_Performance_Test_Suite_Package_Pre-Release

jobs:
PackagePreRelease:
runs-on: ubuntu-latest

steps:

- name: Checkout code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0

- name: Preparing Package Pre Release
run: |
mkdir -p ./package/
cp -r ${{ github.workspace }}/src/ ./package/
cp ${{ github.workspace }}/*.bat ./package/
cp ${{ github.workspace }}/*.psm1 ./package/
cp ${{ github.workspace }}/eng/deploy.ps1 ./package/
cp ${{ github.workspace }}/deploy.env ./package/.env
- name: Upload Package
if: success()
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: ${{ env.PACKAGE_NAME }}
path: ${{ github.workspace }}/package/

0 comments on commit bc04db2

Please sign in to comment.