Skip to content

Commit 052f334

Browse files
committed
Fix schedule run again
1 parent 03f56ae commit 052f334

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/flatpak.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,14 @@ jobs:
3131
- name: Checkout source code
3232
uses: actions/checkout@v3
3333
- name: Setup dev container
34-
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
3534
run: |
3635
npm install --global @devcontainers/cli
3736
- name: Setup container registry credentials
3837
env:
3938
CONTAINER_REGISTRY_NAMESPACE: ${{ secrets.CONTAINER_REGISTRY_NAMESPACE }}
4039
CONTAINER_REGISTRY_USERNAME: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
4140
CONTAINER_REGISTRY_TOKEN: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
42-
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
41+
if: ${{ github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
4342
run: |
4443
docker login "$CONTAINER_REGISTRY_NAMESPACE" \
4544
--username "$CONTAINER_REGISTRY_USERNAME" \
@@ -63,7 +62,7 @@ jobs:
6362
CONTAINER_REGISTRY_USERNAME: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
6463
ALIAS: ${{ matrix.alias }}
6564
VERSION: ${{ matrix.version }}
66-
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
65+
if: ${{ github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
6766
run: |
6867
docker image tag \
6968
"$CONTAINER_REGISTRY_NAMESPACE/$CONTAINER_REGISTRY_USERNAME/devcontainer-flatpak:$ALIAS-$VERSION" \

.github/workflows/osc.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
- name: Checkout source code
1515
uses: actions/checkout@v3
1616
- name: Setup dev container
17-
if: ${{ github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
1817
run: |
1918
npm install --global @devcontainers/cli
2019
- name: Setup container registry credentials

0 commit comments

Comments
 (0)