-
-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a new workflow to build binaries for macOS architectres on GitHub…
… Actions
- Loading branch information
Showing
4 changed files
with
73 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Release executable files for macOS | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version_digit: | ||
description: 'Version digit (major | minor | patch)' | ||
required: true | ||
default: 'patch' | ||
type: choice | ||
options: | ||
- major | ||
- minor | ||
- patch | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
HOMEBREW_TAP_DEPLOY_SECRET_KEY: ${{ secrets.HOMEBREW_TAP_DEPLOY_SECRET_KEY }} | ||
permissions: write-all | ||
steps: | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Install ldid | ||
uses: MOZGIII/install-ldid-action@v1 | ||
with: | ||
tag: v2.1.5-procursus6 | ||
|
||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Use node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: "14" | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: Package | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Action" | ||
npm run release -- ${{ github.event.inputs.version_digit }} --ci | ||
- name: Update homebrew/tap repo for new release | ||
shell: bash | ||
run: scripts/create-homebrew-tap-pr.sh | ||
env: | ||
VERSION: ${{ env.VERSION }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,22 @@ echo "SHA_X64=$SHA_X64" | |
SHA_ARM64=$(shasum -a 256 ${FILE_ARM64} | cut -f 1 -d " ") | ||
echo "SHA_ARM64=$SHA_ARM64" | ||
|
||
# Set up SSH | ||
mkdir -p ~/.ssh | ||
echo "${HOMEBREW_TAP_DEPLOY_SECRET_KEY}" > ~/.ssh/id_rsa | ||
chmod 600 ~/.ssh/id_rsa | ||
git config --global user.name danger | ||
git config --global user.email [email protected] | ||
eval "$(ssh-agent -s)" | ||
ssh-add ~/.ssh/id_rsa | ||
ssh-keyscan -H github.com >> ~/.ssh/known_hosts | ||
ssh -o StrictHostKeyChecking=no -F /dev/null -vT [email protected] | ||
|
||
# Clone tap repo | ||
HOMEBREW_TAP_TMPDIR=$(mktemp -d) | ||
git clone --depth 1 https://github.com/danger/homebrew-tap.git "$HOMEBREW_TAP_TMPDIR" | ||
git clone --depth 1 git@github.com:danger/homebrew-tap.git "$HOMEBREW_TAP_TMPDIR" | ||
cd "$HOMEBREW_TAP_TMPDIR" || exit 1 | ||
|
||
# git config user.name danger | ||
# git config user.email [email protected] | ||
|
||
# Write formula | ||
echo "class DangerJs < Formula" > danger-js.rb | ||
echo " homepage \"https://github.com/danger/danger-js\"" >> danger-js.rb | ||
|
@@ -53,4 +61,6 @@ echo "end" >> danger-js.rb | |
# Commit changes | ||
git add danger-js.rb | ||
git commit -m "Releasing danger-js version ${VERSION}" | ||
git push origin master | ||
git remote rm origin | ||
git remote add origin [email protected]:danger/homebrew-tap.git | ||
git push origin master |