Skip to content

Commit

Permalink
fix: release workflow issues
Browse files Browse the repository at this point in the history
  • Loading branch information
AntiD2ta committed Oct 25, 2024
1 parent 46dde85 commit b6271d6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 21 deletions.
27 changes: 7 additions & 20 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,13 @@
"image": "mcr.microsoft.com/devcontainers/base:noble",

"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"enableNonRootDocker": "true",
"moby": "true"
},
"ghcr.io/devcontainers/features/go:1": {
"version": "1.23"
},
"ghcr.io/guiyomh/features/golangci-lint:0": {
"version": "latest"
},
"ghcr.io/guiyomh/features/gomarkdoc:0": {
"version": "latest"
},
"ghcr.io/guiyomh/features/goreleaser:0": {
"version": "latest"
},
"ghcr.io/marcozac/devcontainer-features/gofumpt:1": {
"version": "latest"
}
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/go:1": {},
"ghcr.io/guiyomh/features/golangci-lint:0": {},
"ghcr.io/guiyomh/features/gomarkdoc:0": {},
"ghcr.io/guiyomh/features/goreleaser:0": {},
"ghcr.io/marcozac/devcontainer-features/gofumpt:1": {},
"ghcr.io/devcontainers-extra/features/pre-commit:2": {}
},
"customizations": {
"vscode": {
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,17 @@ jobs:
with:
fetch-depth: 0

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.23"

- name: Install abigen
run: make install-abigen

- name: Generate contract bindings
run: make generate

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

Expand Down Expand Up @@ -124,7 +135,6 @@ jobs:
uses: actions/checkout@v4
with:
token: "${{ secrets.GITHUB_TOKEN }}"
fetch-depth: 0
- name: Create bump and changelog
uses: commitizen-tools/commitizen-action@master
with:
Expand Down

0 comments on commit b6271d6

Please sign in to comment.