Skip to content

build(deps): bump github.com/evanphx/json-patch from 5.7.0+incompatib… #221

build(deps): bump github.com/evanphx/json-patch from 5.7.0+incompatib…

build(deps): bump github.com/evanphx/json-patch from 5.7.0+incompatib… #221

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: write
jobs:
releaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Build linux-amd64
run: |
make embedded-cluster-linux-amd64
tar -C output/bin -czvf embedded-cluster-linux-amd64.tgz embedded-cluster
./output/bin/embedded-cluster version metadata > metadata.json
- name: Cache files
env:
S3_BUCKET: "tf-staging-embedded-cluster-bin"
AWS_ACCESS_KEY_ID: ${{ secrets.STAGING_EMBEDDED_CLUSTER_UPLOAD_IAM_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.STAGING_EMBEDDED_CLUSTER_UPLOAD_IAM_SECRET }}
AWS_REGION: "us-east-1"
run: |
export EC_VERSION="staging-metadata"
./scripts/cache-files.sh
- name: Publish development release
uses: marvinpinto/action-automatic-releases@latest
with:
automatic_release_tag: development
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: true
title: Development Release Build
files: |
*.tgz
metadata.json