We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9731da commit 8b18c1aCopy full SHA for 8b18c1a
.github/workflows/pack-libs.yml
@@ -2,6 +2,8 @@ name: PHP Pack Lib
2
3
on:
4
workflow_dispatch:
5
+ schedule:
6
+ - cron: "0 0 * * 5"
7
release:
8
types:
9
- published
@@ -165,7 +167,7 @@ jobs:
165
167
files: dist/${{ matrix.lib }}-${{ steps.process-env.outputs.ARCH }}-${{ steps.process-env.outputs.OS }}.txz
166
168
169
- name: "Update latest release of hosted repo"
- if: github.repository == 'static-php/static-php-cli-hosted' && github.event_name == 'workflow_dispatch'
170
+ if: github.repository == 'static-php/static-php-cli-hosted' && (github.event_name == 'workflow_dispatch' || github.event_name == 'schedule')
171
shell: bash
172
run: |
173
ref="$(gh release view --repo static-php/static-php-cli-hosted --json tagName --jq '.tagName')"
0 commit comments