-
Notifications
You must be signed in to change notification settings - Fork 700
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix releaser * goreleaser yaml update version 2 * fix goreleaser version * remove testnet.zip from releaser
- Loading branch information
Showing
2 changed files
with
5 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,17 +14,17 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.21 | ||
|
||
- name: Get packr | ||
run: go install github.com/gobuffalo/packr/v2/[email protected] | ||
|
||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v4 | ||
uses: goreleaser/goreleaser-action@v6 | ||
with: | ||
version: latest | ||
version: '~> v2' | ||
args: release --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOKEN_RELEASE }} | ||
|
@@ -45,16 +45,6 @@ jobs: | |
mv cardona/config/environments/cardona/example.env cardona | ||
sed -i -e "s/image: zkevm-node/image: hermeznetwork\/zkevm-node:$GIT_TAG_NAME/g" cardona/docker-compose.yml | ||
zip -r cardona.zip cardona | ||
# TESTNET | ||
mkdir -p testnet/config/environments/testnet | ||
mkdir -p testnet/db/scripts | ||
cp config/environments/testnet/* testnet/config/environments/testnet | ||
cp docker-compose.yml testnet | ||
sed -i 's/\/config\/environments\/${ZKEVM_NETWORK}/\/config\/environments\/testnet/g' testnet/docker-compose.yml | ||
cp db/scripts/init_prover_db.sql testnet/db/scripts | ||
mv testnet/config/environments/testnet/example.env testnet | ||
sed -i -e "s/image: zkevm-node/image: hermeznetwork\/zkevm-node:$GIT_TAG_NAME/g" testnet/docker-compose.yml | ||
zip -r testnet.zip testnet | ||
# MAINNET | ||
mkdir -p mainnet/config/environments/mainnet | ||
mkdir -p mainnet/db/scripts | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# .goreleaser.yaml | ||
version: 2 | ||
|
||
builds: | ||
- main: ./cmd/ | ||
goos: | ||
|