minor fixes to download csv #163
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: Reveal Web test, build and deploy | |
on: | |
push: | |
branches: [ main, zambia-aggregation, zam-agg, nih-simulation ] | |
jobs: | |
yarn-install-and-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout reveal-web | |
uses: actions/checkout@v3 | |
with: | |
repository: akrosinc/reveal-web | |
- uses: borales/[email protected] | |
with: | |
cmd: install # will run `yarn install` command | |
- uses: borales/[email protected] | |
with: | |
cmd: upgrade # will run `yarn upgrade` command | |
- uses: borales/[email protected] | |
with: | |
cmd: build # will run `yarn build` command | |
env: | |
NODE_OPTIONS: --openssl-legacy-provider | |
build-and-push-docker-image: | |
runs-on: ubuntu-latest | |
needs: [yarn-install-and-build] | |
steps: | |
- name: Output Run Number | |
run: echo ${{ github.run_number }} | |
- name: Checkout reveal-web | |
uses: actions/checkout@v3 | |
with: | |
repository: akrosinc/reveal-web | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: akrosinc | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
push: true | |
tags: akrosinc/reveal-web:v3.0.${{ github.run_number }} |