Skip to content

Commit

Permalink
Remove automatic releases (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
odarbelaeze authored Sep 23, 2024
1 parent 4d4cf4a commit e4c46f7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 62 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/ship-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
31 changes: 1 addition & 30 deletions .github/workflows/ship-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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: "<cluster> <service>",
UsageText: "ecs-deploy [options] <cluster> <service>",
Expand Down

0 comments on commit e4c46f7

Please sign in to comment.