File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 97
97
with :
98
98
repository : ${{ github.event.inputs.repo }}
99
99
ref : ${{ github.event.inputs.gitref }}
100
- token : ${{ secrets.GH_PAT_MAINTENANCE_OSS }}
100
+ token : ${{ secrets.GH_PAT_MAINTENANCE_OSS }} # This token is what allows us to commit directly to master
101
101
- name : " Publish Python CDK: bump Poetry package version"
102
102
id : bumpversion
103
103
run : |
@@ -206,10 +206,12 @@ jobs:
206
206
with :
207
207
repository : ${{ github.event.inputs.repo }}
208
208
ref : ${{ github.event.inputs.gitref }}
209
+ token : ${{ secrets.GH_PAT_MAINTENANCE_OSS }} # This token is what allows us to commit directly to master
209
210
- name : Bump CDK dependency of source-declarative-manifest
210
211
run : |
211
212
cd airbyte-integrations/connectors/source-declarative-manifest
212
- poetry add airbyte-cdk==${{needs.bump-version.outputs.new_cdk_version}}
213
+ # --no-cache is used to ensure the latest version is fetched. Let's see if we need to add a wait...
214
+ poetry add airbyte-cdk==${{needs.bump-version.outputs.new_cdk_version}} --no-cache
213
215
- name : Bump version of source-declarative-manifest
214
216
uses : ./.github/actions/run-airbyte-ci
215
217
with :
You can’t perform that action at this time.
0 commit comments