From 1e09ce2ab7055fbc98674edfb79b549c6a32bdff Mon Sep 17 00:00:00 2001 From: Shane Mulcahy Date: Sat, 22 Nov 2025 00:01:06 -0500 Subject: [PATCH] Fix workflows. --- .github/workflows/nightly.yml | 8 ++------ .github/workflows/release.yml | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index d43f1da..7191618 100755 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,13 +10,9 @@ permissions: contents: write # needed to create/update releases & upload assets packages: read # needed to pull GHCR image -env: - # CHANGE THIS to your GitHub user or org name (the owner of the original repo) - ORIGIN_OWNER: "OpenJE" - jobs: build-nightly-linux-container: - if: github.repository_owner == env.ORIGIN_OWNER + if: github.repository_owner == "OpenJE" runs-on: ubuntu-latest steps: @@ -74,7 +70,7 @@ jobs: prerelease: true build-nightly-windows-msvc: - if: github.repository_owner != env.ORIGIN_OWNER + if: github.repository_owner != "OpenJE" runs-on: windows-latest steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f15266..985d034 100755 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,16 +9,12 @@ permissions: contents: write # needed to upload release assets packages: read # needed to pull GHCR image -env: - # CHANGE THIS to your GitHub user or org name (the owner of the original repo) - ORIGIN_OWNER: "OpenJE" - jobs: # 1. Linux job that INVOKES the MSVC 2003 container via docker run build-linux-container: # Only run: # - in the original repo (not forks) - if: github.repository_owner == env.ORIGIN_OWNER + if: github.repository_owner == "OpenJE" runs-on: ubuntu-latest @@ -71,7 +67,7 @@ jobs: # 2. Windows job using latest MSVC on windows-latest, with nmake build-windows-msvc: # Run on forks (i.e., not the original repo owner) - if: github.repository_owner != env.ORIGIN_OWNER + if: github.repository_owner != "OpenJE" runs-on: windows-latest