[chore] Remove branch filter on the push build action trigger.

This commit is contained in:
jmug
2026-03-04 14:27:13 -08:00
parent b6d763df35
commit b3d33efd41

View File

@@ -2,11 +2,9 @@ name: Docker
on:
push:
branches:
- handmade
tags:
- "*"
# TODO: Bring back once gitea is updated past 1.21
# TODO: Bring back branch filter once gitea is updated past 1.21
# branches:
# - handmade
# paths-ignore:
# - ".github/**"
# - "!.github/workflows/docker.yml"
@@ -35,6 +33,8 @@ jobs:
runs-on: ubuntu-latest
# NOTE: Running on pull requests for now, but without pushing.
# if: github.event_name != 'pull_request'
# TODO: Remove branch filter workaround once gitea is updated past 1.21
if: github.event_name != 'push' || github.ref == 'refs/heads/handmade' || startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v4