add logs #89
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
name: release-relayer | |
on: | |
push: | |
branches: | |
- main | |
- more-logs | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: snowfork/snowbridge-relay | |
jobs: | |
release-relayer: | |
runs-on: snowbridge-runner | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
- name: Setup go | |
uses: actions/checkout@v4 | |
with: | |
go-version: "^1.21.0" | |
- name: Install Go tools | |
run: > | |
go install github.com/magefile/[email protected] && | |
go install github.com/ferranbt/fastssz/[email protected] && | |
go install github.com/ethereum/go-ethereum/cmd/[email protected] | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Build contracts | |
working-directory: contracts | |
run: forge build | |
- name: Install dependencies | |
working-directory: relayer | |
run: go mod download | |
- name: Add gopath to bin | |
run: echo "$HOME/go/bin" >> $GITHUB_PATH | |
- name: Build | |
working-directory: relayer | |
run: CGO_ENABLED=1 GOOS=linux GOARCH=amd64 mage build | |
- name: Configure Git | |
run: | | |
git config --global user.name 'github-actions' | |
git config --global user.email '[email protected]' | |
- name: Create new tag | |
id: create_tag | |
run: | | |
tag_name="relayer-more-logs" | |
echo "Tag name: $tag_name" | |
echo "tag=$tag_name" >> $GITHUB_OUTPUT | |
# - name: Push new tag | |
# run: | | |
# git push origin --tags | |
- name: "Build Changelog" | |
id: build_changelog | |
uses: mikepenz/release-changelog-builder-action@v4 | |
- name: Create a GitHub Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.create_tag.outputs.tag }} | |
release_name: ${{ steps.create_tag.outputs.tag }} | |
body: | | |
${{steps.build_changelog.outputs.changelog}} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./relayer/build/snowbridge-relay | |
asset_name: snowbridge-relay | |
asset_content_type: application/octet-stream | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./relayer | |
push: true | |
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.create_tag.outputs.tag }} |