Bump version in homebrew-brew #165
Workflow file for this run
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
name: Build and Test | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [opened, reopened, synchronize, labeled] | ||
env: | ||
GO_VERSION: 1.22.0 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: ${{ github.ref != format('refs/heads/{0}', 'main') }} | ||
jobs: | ||
bump: | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.CONDUKTORBOT_GHCR_RW }} | ||
APP_VERSION: 0.2.1 | ||
APP_SHA: ${{ github.sha }} | ||
steps: | ||
- run: env | ||
shell: bash | ||
- uses: actions/checkout@v3 | ||
with: | ||
repository: 'conduktor/homebrew-brew' | ||
ref: main | ||
path: homebrew-brew | ||
token: ${{ secrets.CONDUKTORBOT_REPO_WRITE }} | ||
- name: Update conduktor-ctl on homebrew | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
Check failure on line 36 in .github/workflows/ci.yml GitHub Actions / Build and TestInvalid workflow file
|
||
yq --version | ||
gh version | ||
gh auth status | ||
export BRANCH=update_console-plus_$APP_VERSION | ||
echo BRANCH $BRANCH | ||
export BASE_BRANCH=${{ github.ref_name }} | ||
echo BASE_BRANCH $BASE_BRANCH | ||
export TITLE="Bump conduktor-ctl version to ${APP_VERSION}" | ||
export BODY="Release https://github.com/conduktor/ctl/releases/tag/${APP_VERSION}" | ||
export MESSAGE="${TITLE} .${BODY}" | ||
echo TITLE $TITLE | ||
echo BODY $BODY | ||
echo MESSAGE $MESSAGE | ||
cd homebrew-brew | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git checkout -b $BRANCH | ||
sed -i 's/version "[^"]*"/version "${{ APP_VERSION }}"/' Formula/conduktor-cli.rb | ||
sed -i 's/gitSha\s*=\s*"[^"]*"/gitSha = "${{ APP_SHA }}"/' Formula/conduktor-cli.rb | ||
git add Formula/conduktor-cli.rb | ||
git commit -m "$MESSAGE" | ||
git push origin $BRANCH | ||
gh pr create --title "$TITLE" --body "$BODY" --repo 'https://github.com/conduktor/homebrew-brew' --base $BASE_BRANCH | ||
cd .. | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref == format('refs/heads/{0}', 'main') }} | ||
steps: | ||
- uses: release-drafter/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
unit-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: go test | ||
run: go test ./... | ||
integration-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: run test | ||
run: ./test_final_exec.sh | ||
docker-test: | ||
runs-on: ubuntu-latest | ||
env: | ||
IMAGE_NAME: "conduktor-ctl" | ||
PLATFORMS: "linux/amd64,linux/arm64" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: docker/setup-buildx-action@v3 | ||
with: | ||
platforms: ${{ env.PLATFORMS }} | ||
- uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: ${{ env.PLATFORMS }} | ||
- uses: docker/metadata-action@v4 | ||
id: docker_meta | ||
with: | ||
images: conduktor/${{ env.IMAGE_NAME }} | ||
tags: type=sha | ||
- name: Build ${{ env.IMAGE_NAME }} | ||
id: build | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
platforms: ${{ env.PLATFORMS }} | ||
push: false | ||
file: docker/Dockerfile | ||
tags: ${{ steps.docker_meta.outputs.tags }} | ||
labels: ${{ steps.docker_meta.outputs.labels }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
build-args: | | ||
hash=${{ github.sha }} | ||
version=${{ github.ref_name }} |