We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2e8a9e commit 4be1099Copy full SHA for 4be1099
.github/workflows/release-lambda-init-containers.yml
@@ -9,17 +9,13 @@ on:
9
jobs:
10
release-tags:
11
runs-on: ubuntu-latest
12
+ if:
13
+ (github.event.workflow_run && github.event.workflow_run.conclusion == 'success') ||
14
+ (github.event_name == 'workflow_dispatch')
15
steps:
16
- uses: actions/checkout@v4
17
with:
18
fetch-depth: 2
- - uses: actions/setup-node@v4
- with:
- node-version: 'lts/*'
19
- - run: npm install
20
- - run: |
21
- git config user.name ${GITHUB_ACTOR}
22
- git config user.email gh-actions-${GITHUB_ACTOR}@github.com
23
- id: get_tag
24
run: echo "latest_tag=$(cat package.json | jq .version)" >> $GITHUB_OUTPUT
25
- name: Create release tags for Lambda and K8s Init Containers
0 commit comments