Skip to content

Commit

Permalink
macOS builder workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
battlmonstr committed Nov 22, 2023
1 parent 9413905 commit d63f54b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release_macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release macOS builder

on:
workflow_dispatch:
push:
tags:
- release/*-base

jobs:
release:
runs-on: macos-13
# runs-on: macos-13-xlarge # M1 CPU runner requires billing setup
steps:
- uses: actions/checkout@v3
- name: release.sh
run: |
sudo xcode-select -s /Applications/Xcode_15.0.app
./ci/release.sh $GITHUB_REF_NAME
8 changes: 8 additions & 0 deletions ci/release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

SRC_GIT_URL="https://github.com/battlmonstr/silkworm.git"

echo "tag = $1"
git branch
uname -a
g++ --version

0 comments on commit d63f54b

Please sign in to comment.