Github Release #83
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
# release package | |
name: Github Release | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build-binaries: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
env: | |
TARBALL_TARGETS: linux-x64,linux-arm64,darwin-x64,darwin-arm64,win32-x64 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE }} | |
aws-region: us-west-2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
cache: yarn | |
- run: yarn | |
- run: yarn build | |
- name: Find packaged node version | |
id: find_packaged_node_version | |
working-directory: packages/cli | |
run: | | |
echo "NODE_VERSION=$(jq -r .oclif.update.node.version package.json)" >> "${GITHUB_OUTPUT}" | |
- uses: actions/cache@v3 | |
id: cache-oclif-pack | |
name: Setup cache for oclif pack | |
with: | |
path: packages/cli/tmp/cache | |
key: preevy-oclif-pack-node-v${{ steps.find_packaged_node_version.outputs.NODE_VERSION }} | |
- name: Pack tarballs | |
working-directory: packages/cli | |
run: yarn oclif pack tarballs --parallel --no-xz --targets $TARBALL_TARGETS | |
- name: Upload tarballs | |
working-directory: packages/cli | |
run: yarn oclif upload tarballs --no-xz --targets $TARBALL_TARGETS | |
- name: Rename tarballs to remove git sha | |
working-directory: packages/cli/dist | |
run: | | |
git_sha="$(git rev-parse --short HEAD)" | |
for f in $(find . -maxdepth 1 -type f -name 'preevy-v*'); do | |
new_name="$(echo ${f} | sed 's/-'"${git_sha}"'//')" | |
echo "Renaming ${f} to ${new_name}" | |
mv "${f}" "${new_name}" | |
done | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
generate_release_notes: true | |
draft: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
prerelease: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
files: | | |
packages/cli/dist/preevy-v*.tar.gz | |
- uses: actions/create-github-app-token@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |
id: app-token | |
with: | |
app-id: ${{ secrets.PREEVY_AUTOMATION_APP_ID }} | |
private-key: ${{ secrets.PREEVY_AUTOMATION_PRIVATE_KEY }} | |
owner: livecycle | |
repositories: 'preevy,homebrew-preevy' | |
- uses: actions/checkout@v4 | |
name: Checkout homebrew repo | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
repository: livecycle/homebrew-preevy | |
path: homebrew | |
- name: Update Homebrew formula | |
if: startsWith(github.ref, 'refs/tags/') | |
working-directory: packages/cli | |
run: | | |
version="$(jq -r .version package.json)" | |
node scripts/homebrew.mjs > ../../homebrew/Formula/preevy.rb | |
cd ../../homebrew | |
git config user.name "GitHub Actions" | |
git config user.email "github-actions[bot]@users.noreply.github.com" | |
git add Formula/preevy.rb | |
git commit -m "Update Preevy formula for version ${version}" | |
git push |