From a9f4a55c548d163bce868b9041ca1b797c375dfe Mon Sep 17 00:00:00 2001 From: Shane Mulcahy Date: Fri, 21 Nov 2025 23:54:34 -0500 Subject: [PATCH] Fix workflows. --- .github/workflows/nightly.yml | 10 +++------- .github/workflows/release.yml | 10 +++------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index baa3ac1..f1e9ea6 100755 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -1,4 +1,4 @@ -name: Nightly Windows build +name: Nightly Build on: schedule: @@ -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 == vars.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 != vars.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 896ff68..c887068 100755 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Build Windows binary for release +name: Release Build on: release: @@ -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 == vars.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 != vars.ORIGIN_OWNER + if: github.repository_owner != OpenJE runs-on: windows-latest