diff --git a/.github/workflows/ship-latest.yml b/.github/workflows/ship-latest.yml index e93de10..37ee7bc 100644 --- a/.github/workflows/ship-latest.yml +++ b/.github/workflows/ship-latest.yml @@ -31,34 +31,3 @@ jobs: - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} - - pre-release: - runs-on: ubuntu-latest - steps: - - - uses: actions/checkout@v4 - - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: 1.22 - - - - name: Test - run: go test -v ./... - - - - name: Build - run: CGO_ENABLED=0 go build -a -ldflags '-extldflags "-static"' . - - - - uses: "marvinpinto/action-automatic-releases@latest" - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "latest" - prerelease: true - title: "Development Build" - files: | - LICENSE - ecs-ship diff --git a/.github/workflows/ship-version.yml b/.github/workflows/ship-version.yml index d31bfff..c5ab85c 100644 --- a/.github/workflows/ship-version.yml +++ b/.github/workflows/ship-version.yml @@ -29,36 +29,7 @@ jobs: tags: | nextroll/ecs-ship:v1 nextroll/ecs-ship:v1.2 - nextroll/ecs-ship:v1.2.0 + nextroll/ecs-ship:v1.2.1 - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} - - pre-release: - runs-on: ubuntu-latest - steps: - - - uses: actions/checkout@v4 - - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: 1.22 - - - - name: Test - run: go test -v ./... - - - - name: Build - run: CGO_ENABLED=0 go build -a -ldflags '-extldflags "-static"' . - - - - uses: "marvinpinto/action-automatic-releases@latest" - with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - prerelease: False - files: | - LICENSE - ecs-ship diff --git a/main.go b/main.go index c6e8d07..c8e5c11 100644 --- a/main.go +++ b/main.go @@ -19,7 +19,7 @@ func main() { app := &cli.App{ Name: "ecs-ship", Usage: "Deploy your aws ecs services.", - Version: "1.2.0", + Version: "1.2.1", UseShortOptionHandling: true, ArgsUsage: " ", UsageText: "ecs-deploy [options] ",