Merge pull request #916 from SSWConsulting/k6-fix #156
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
# This is a basic workflow to help you get started with Actions | |
name: Staging build | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: [staging] | |
# A workflow run is made up of one or more jobsjj that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
environment: | |
name: Staging | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get current build time | |
uses: gerred/actions/current-time@master | |
id: current-time | |
- name: Use current build time | |
env: | |
TIME: "${{ steps.current-time.outputs.time }}" | |
run: echo $TIME | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: 'package.json' | |
- name: Install Firebase-tools | |
run: npm i firebase-tools -g | |
- name: Create env file for Svelte UI | |
run: | | |
cd ui | |
touch .env | |
echo API=${{ vars.API }} >> .env | |
echo API2=${{ vars.API2 }} >> .env | |
echo DEPLOYMENTS_URL=${{ vars.DEPLOYMENTS_URL }} >> .env | |
echo MAX_SCAN_SIZE=${{ vars.MAX_SCAN_SIZE }} >> .env | |
- name: Deploy Hosting to Staging | |
env: | |
FIREBASETOKEN: ${{ secrets.FIREBASETOKEN }} | |
run: | | |
cd ui | |
firebase use ssw-codeauditor-staging-f8357 --token ${{ secrets.FIREBASETOKEN }} | |
firebase projects:list --token ${{ secrets.FIREBASETOKEN }} | |
npm i | |
npm run build | |
firebase deploy --token ${{ secrets.FIREBASETOKEN }} --only hosting | |
- name: Create env file for NodeJS app | |
run: | | |
cd api/functions | |
touch .env | |
echo AZURE_STORAGE_ACCOUNT=${{ secrets.AZURE_STORAGE_ACCOUNT }} >> .env | |
echo AZURE_STORAGE_ACCESS_KEY=${{ secrets.AZURE_STORAGE_ACCESS_KEY }} >> .env | |
echo WORKFLOW_ACCESS_TOKEN=${{ secrets.WORKFLOW_ACCESS_TOKEN }} >> .env | |
echo MAX_SCAN_SIZE=${{ vars.MAX_SCAN_SIZE }} >> .env | |
- name: Deploy Function to Staging | |
env: | |
FIREBASETOKEN: ${{ secrets.FIREBASETOKEN }} | |
run: | | |
cd api/functions | |
firebase use ssw-codeauditor-staging-f8357 --token ${{ secrets.FIREBASETOKEN }} | |
firebase projects:list --token ${{ secrets.FIREBASETOKEN }} | |
npm i | |
firebase deploy --token ${{ secrets.FIREBASETOKEN }} --only functions |