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
3 changes: 2 additions & 1 deletion .github/workflows/apigee-release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ defaults:
shell: bash # Explicitly sets pipeline to fail if any subprocess fails
on:
push
permissions: read-all
permissions:
contents: read

jobs:
deploy-hello-world:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/continous-integration-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ jobs:
run: make check-licenses

- name: Set SPEC_VERSION env var
run: echo ::set-env name=SPEC_VERSION::$(poetry run python scripts/calculate_version.py)
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
run: echo "SPEC_VERSION=$(poetry run python scripts/calculate_version.py)" >> "$GITHUB_ENV"

- name: Create release (master only)
id: create-release
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/spec-release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ defaults:
shell: bash # Explicitly sets pipeline to fail if any subprocess fails
on:
push
permissions: read-all
permissions:
contents: read

jobs:
deploy-hello-world-spec:
Expand Down
Loading