Skip to content

Add deploy and undeploy eip_agent in Makefile #4

Add deploy and undeploy eip_agent in Makefile

Add deploy and undeploy eip_agent in Makefile #4

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Build eipctl
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -o eipctl cmd/eipctl/main.go
- name: Upload to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GIT_TOKEN }}
file: eipctl
asset_name: eipctl
tag: ${{ github.ref }}
overwrite: true
body: "eipctl"