github.com/koko1123/flow-go-1@v0.29.6/.github/workflows/cd.yml (about)

     1  name: CD
     2  
     3  on:
     4    push:
     5      tags: 
     6        - '*'
     7        - "!daily-*"
     8  
     9  jobs:
    10    docker-push:
    11      name: Push to container registry
    12      runs-on: ubuntu-latest
    13      steps:
    14      - name: Setup Go
    15        uses: actions/setup-go@v2
    16        with:
    17          go-version: '1.19'
    18      - name: Checkout repo
    19        uses: actions/checkout@v2
    20      - name: Build relic
    21        run: make crypto_setup_gopath
    22      - name: Docker build
    23        run: |
    24          make docker-build-flow
    25          make docker-build-flow-without-netgo