Merge pull request #1002 from Molecule-AI/staging

promote: staging → main — self-hosted promote-latest
This commit is contained in:
Hongming Wang 2026-04-19 05:54:22 -07:00 committed by GitHub
commit 09e520600a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,12 +32,16 @@ env:
jobs:
promote:
runs-on: ubuntu-latest
# Self-hosted mac mini — GitHub-hosted minutes are currently quota-
# blocked. mac mini already has crane available via homebrew.
runs-on: [self-hosted, macos, arm64]
steps:
- name: Install crane
- name: Ensure crane installed
run: |
curl -fsSL https://github.com/google/go-containerregistry/releases/download/v0.20.2/go-containerregistry_Linux_x86_64.tar.gz \
| tar xz -C /usr/local/bin crane
if ! command -v crane >/dev/null 2>&1; then
brew install crane
fi
crane version
- name: GHCR login
run: |