fix(ci): docker and electron publish #16
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: Electron Build and Publish | |
on: | |
pull_request: | |
branches: [main] | |
# workflow_run: | |
# workflows: ["Release Build"] | |
# types: [completed] | |
env: | |
PUBLISH_FOR_PULL_REQUEST: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache node modules | |
id: cache-npm | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Snapcraft | |
uses: samuelmeuli/action-snapcraft@v3 | |
- name: Build electron app | |
run: | | |
cd webapp | |
npm ci | |
npm run build-electron | |
env: | |
AWS_REGION: ${{ vars.AWS_REGION }} | |
DOMAIN_NAME: ${{ vars.DOMAIN_NAME }} | |
API_URL: ${{ vars.API_URL }} | |
COGNITO_USER_POOL_ID: ${{ vars.COGNITO_USER_POOL_ID }} | |
COGNITO_APP_CLIENT_ID: ${{ vars.COGNITO_APP_CLIENT_ID }} | |
REDIRECT_SIGN_IN: ${{ vars.REDIRECT_SIGN_IN }} | |
REDIRECT_SIGN_OUT: ${{ vars.REDIRECT_SIGN_OUT }} | |
AUTH_GUARD_REDIRECT: ${{ vars.AUTH_GUARD_REDIRECT }} | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@master | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }} | |
aws-region: ${{ vars.AWS_REGION }} | |
- name: Bundle and Publish electron | |
run: | | |
cd webapp | |
npm run bundle-electron | |
env: | |
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }} | |
AWS_REGION: ${{ vars.AWS_REGION }} |