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/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build-and-test:
# Skip job based on the commit message
# Skip job based on the commit message, only works in push to branches for now
if: contains(toJson(github.event.commits), '[skip ci]') == false
name: Build & test Docker images with random user
runs-on: ubuntu-18.04
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ on:

jobs:
deploy:
# Skip job based on the commit message
if: contains(toJson(github.event.commits), '[skip ci]') == false
name: Deploy Docker images
runs-on: ubuntu-18.04
steps:
Expand All @@ -26,8 +24,12 @@ jobs:
env:
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
- name: Deploy new images
run: VERSION="${TAG}" make release
# - name: Deploy new images
# run: VERSION="${TAG}" make release
- name: Tag browser images
run: VERSION="${TAG}" make tag_and_push_browser_images
- name: List Docker images
run: docker images
# - name: Deploy tag latest
# run: VERSION="${TRAVIS_TAG}" make tag_latest
# - name: Deploy release latest
Expand Down
Loading