Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docker Image CI

on:
pull_request:
branches: [ master ]
branches: [ master, dev ]
workflow_dispatch:


Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/porter-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Porter Invocation Docker Image CI

on:
pull_request:
branches: [ master ]
branches: [ master, dev ]
workflow_dispatch:


Expand All @@ -14,6 +14,11 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v2

- run: 'echo "VSAC_API_KEY=$VSAC_API_KEY" > .env; echo "COMPOSE_PROJECT_NAME=rems_porter" >> .env'
shell: bash
env:
VSAC_API_KEY: ${{secrets.VSAC_API_KEY}}

- name: Install Porter
run: curl -L https://cdn.porter.sh/canary/install-linux.sh | bash

Expand Down