1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Disable ubuntu docker job in individual steps (#23575)

Disable individual steps rather than whole job to make the job report as
passing for SignPath runner verification
This commit is contained in:
Michał Janiszewski
2025-01-08 19:52:49 +01:00
committed by GitHub
parent f1e51fd873
commit ea58519d1a

View File

@@ -518,16 +518,18 @@ jobs:
linux-docker:
name: Ubuntu Linux (Docker)
needs: [check-code-formatting, build_variables]
if: github.repository == 'OpenRCT2/OpenRCT2' && github.ref == 'refs/heads/develop'
runs-on: ubuntu-latest
steps:
- name: Checkout image
if: github.repository == 'OpenRCT2/OpenRCT2' && github.ref == 'refs/heads/develop'
uses: actions/checkout@v4
with:
repository: OpenRCT2/openrct2-docker
- name: Build image
if: github.repository == 'OpenRCT2/OpenRCT2' && github.ref == 'refs/heads/develop'
run: docker build -t openrct2/openrct2-cli:develop develop/cli
- name: Push image
if: github.repository == 'OpenRCT2/OpenRCT2' && github.ref == 'refs/heads/develop'
env:
OPENRCT2_DOCKER_USER: ${{ secrets.OPENRCT2_DOCKER_USER }}
OPENRCT2_DOCKER_PASS: ${{ secrets.OPENRCT2_DOCKER_PASS }}