Skip to content

refacotr(eventindexer): update env example #5

refacotr(eventindexer): update env example

refacotr(eventindexer): update env example #5

Workflow file for this run

name: Eventindexer
on:
push:
branches: [moonchain-dev]
paths:
- "packages/eventindexer/**"
pull_request:
paths:
- "packages/eventindexer/**"
- "go.mod"
- "go.sum"
jobs:
# lint-eventindexer:
# name: lint-eventindexer
# runs-on: [taiko-runner]
# steps:
# - uses: actions/setup-go@v5
# with:
# go-version: 1.21.0
# - uses: actions/checkout@v4
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v6
# with:
# # Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
# version: latest
#
# # Optional: working directory, useful for monorepos
# working-directory: ./packages/eventindexer
# args: --config=.golangci.yml --timeout=4m
#
# test-eventindexer:
# runs-on: [taiko-runner]
# needs: lint-eventindexer
# steps:
# - name: Cancel Previous Runs
# uses: styfle/cancel-workflow-action@0.12.1
# with:
# access_token: ${{ github.token }}
#
# - uses: actions/checkout@v4
# - uses: actions/setup-go@v5
# with:
# go-version: ">=1.21.0"
#
# - name: eventindexer - Unit Tests
# working-directory: ./packages/eventindexer
# run: go test `go list ./... | grep -v ./contracts | grep -v ./mock | grep -v ./cmd` -coverprofile=coverage.txt -covermode=atomic
#
# - name: eventindexer - Upload coverage to Codecov
# uses: codecov/codecov-action@v4
# with:
# files: ./packages/eventindexer/coverage.txt
# flags: eventindexer
push-eventindexer-docker-image:
if: ${{ github.event_name == 'pull_request' }}
name: Build and push docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Login to GAR
uses: docker/login-action@v3
with:
registry: us-docker.pkg.dev
username: _json_key
password: ${{ secrets.GAR_JSON_KEY }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
us-docker.pkg.dev/mxczkevm/images/event-indexer
tags: |
type=ref,event=branch
type=ref,event=pr
type=ref,event=tag
type=sha
- name: Build and push
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
push: true
context: .
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
PACKAGE=eventindexer