Skip to content

Commit

Permalink
Push v2-prod from hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
vesameskanen committed Oct 1, 2024
1 parent 874047f commit cfae1f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/dev-pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: Process dev-2.x push or pr
name: Process hotfix push or pr
on:
push:
branches:
- dev-2.x
- hotfix
pull_request:
branches:
- dev-2.x
- hotfix
jobs:
docker-push:
if: github.ref == 'refs/heads/dev-2.x'
if: github.ref == 'refs/heads/hotfix'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build docker image from dev-2.x and push it
- name: Build docker image from hotfix and push it
run: ./.github/workflows/scripts/build_and_push_dev.sh
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scripts/build_and_push_dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

DOCKER_IMAGE="hsldevcom/opentripplanner"
DOCKER_TAG="v2"
DOCKER_TAG="v2-prod"

COMMIT_HASH=$(git rev-parse --short "$GITHUB_SHA")

Expand Down

0 comments on commit cfae1f2

Please sign in to comment.