Skip to content

Commit

Permalink
Fix workflow branches versions
Browse files Browse the repository at this point in the history
  • Loading branch information
micryc committed Mar 14, 2024
1 parent 0e40d59 commit 1c3d7a2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Code scanning - action"

on:
push:
branches: ["master", "v2", "v31"]
branches: ["v2"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["master"]
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy Docker

on:
workflow_dispatch:
branches: ["master", "v2", "v31"]
branches: ["v2"]
inputs:
tag:
description: tag/version to deploy
Expand All @@ -23,8 +23,8 @@ jobs:
CLUSTER_ID="c-n8zp2"
NAMESPACE_NAME="swagger-oss"
K8S_OBJECT_TYPE="daemonsets"
K8S_OBJECT_NAME="swagger-petstore3"
DEPLOY_IMAGE="swaggerapi/swagger-petstore3:$SC_RELEASE_TAG"
K8S_OBJECT_NAME="swagger-petstore"
DEPLOY_IMAGE="swaggerapi/swagger-petstore:$SC_RELEASE_TAG"
workloadStatus=""
getStatus() {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
push: true
platforms: linux/amd64
provenance: false
tags: swaggerapi/petstore3:${{ env.TAG }}
tags: swaggerapi/petstore:${{ env.TAG }}
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 1c3d7a2

Please sign in to comment.