We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d70aefa commit 61761d9Copy full SHA for 61761d9
.github/workflows/build-and-deploy.yml
@@ -131,3 +131,15 @@ jobs:
131
- name: Deploy
132
if: (github.event_name == 'repository_dispatch') || (github.event_name == 'push' && github.ref == 'refs/heads/main')
133
run: make deploy-windows-packages
134
+ update-lifecycle-version:
135
+ name: Update lifecycle version of sample builders
136
+ runs-on: ubuntu-latest
137
+ steps:
138
+ - name: Checkout Repository
139
+ uses: actions/checkout@v3
140
+ - name: Update lifecycle version
141
+ run: echo ${{ github.event.client_payload.version }}
142
+ - name: Check event event_name
143
+ run: echo ${{ github.event_name }}
144
+
145
0 commit comments