Skip to content

Commit

Permalink
feat(ci): migrate publish-cli workflow to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
esolitos authored and gitbutler-client committed Aug 19, 2024
1 parent 384514b commit 0e7b53e
Showing 1 changed file with 121 additions and 0 deletions.
121 changes: 121 additions & 0 deletions .github/workflows/publish-cli.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
name: Vespa CLI - Build and Publish

on:
push:
tags:
- v*
pull_request:
branches:
- master
paths:
- .github/workflows/publish-cli.yml
- client/go/**

defaults:
run:
# Specify to ensure "pipefail and errexit" are set.
# Ref: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#defaultsrunshell
shell: bash
# This workflow only interacts with the client/go directory, so we can set the working directory here.
working-directory: client/go

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5

- name: Define Build Version
id: meta
run: |
if [[ "${{ github.event_name }}" == "push" && "${{ startswith(github.ref, 'refs/tags/v') }}" == "true" ]]; then
BUILD_VERSION="${{ github.ref_name }}"
else
BUILD_VERSION="0.0.0-dev_${{ github.run_number }}"
fi
echo "version=${BUILD_VERSION}" >> $GITHUB_OUTPUT
- name: build
env:
VERSION: ${{ steps.meta.outputs.version }}
run: |
make clean dist
- name: test
run: |
make test
- uses: actions/upload-artifact@v4
with:
name: vespa-cli
path: client/go/dist
retention-days: 1

publish:
runs-on: macos-latest

# if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/v')
needs:
- build

env:
HOMEBREW_GITHUB_API_TOKEN: ${{ secrets.HOMEBREW_GITHUB_API_TOKEN }}
GH_TOKEN: ${{ github.token }}

steps:
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
with:
name: vespa-cli
path: client/go/dist

- name: Set up Homebrew
id: set-up-homebrew
uses: vespa-engine/gh-actions/github/setup-homebrew@Virtual-branch-2

- name: Cache Homebrew Bundler RubyGems
id: cache
uses: actions/cache@v3
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
restore-keys: ${{ runner.os }}-rubygems-

- name: Install Homebrew Bundler RubyGems
if: steps.cache.outputs.cache-hit != 'true'
run: brew install-bundler-gems

- name: DEBUG
run: |
pwd
echo "===================== ls -lA ====================="
ls -lA
echo "===================== ls -lA dist ====================="
ls -lA dist
- name: install-dependencies
env:
HOMEBREW_NO_ANALYTICS: 1
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
run: |
brew install --quiet coreutils gh zip go
- name: Publish to GitHub Releases
if: github.event_name == 'push' && github.ref == 'refs/tags/v*'
run: |
make -C client/go clean dist-github
- name: Publish to Homebrew
if: github.event_name == 'push' && github.ref == 'refs/tags/v*'
run: |
make -C client/go clean dist-homebrew
- name: Install via Homebrew
if: github.event_name == 'push' && github.ref == 'refs/tags/v*'
run: |
make -C client/go install-brew

0 comments on commit 0e7b53e

Please sign in to comment.