Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopocarlini committed Oct 17, 2023
1 parent 1e3210d commit 56cf69d
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 47 deletions.
44 changes: 0 additions & 44 deletions .github/workflows/release.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/release_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Release

# Controls when the workflow will run
on:
push:
branches:
- master

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:


permissions:
packages: write
contents: write
issues: write
id-token: write
actions: read


# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
image:
name: Build and Push Docker Image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref_name }}

- name: Build and Push
id: semver
uses: pagopa/github-actions-template/ghcr-build-push@v1.5.4
with:
tag: '1.0.3'
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion helm/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ microservice-chart:

image:
repository: ghcr.io/pagopa/ubuntu-vm
tag: 1.0.2
tag: 1.0.3
pullPolicy: Always

deployment:
Expand Down
4 changes: 2 additions & 2 deletions scripts/connect_oracle.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
print("Executing query...")
sqlQuery = str("""
UPDATE NODO4_CFG.PSP
SET NODO4_CFG.PSP='ABC'
WHERE NODO4_CFG.PSP.ID_PSP = 'JACOPO'
SET PSP='ABC'
WHERE PSP.ID_PSP = 'JACOPO'
""")

cursor.execute(sqlQuery)
Expand Down

0 comments on commit 56cf69d

Please sign in to comment.