github.com/projecteru2/core@v0.0.0-20240321043226-06bcc1c23f58/.github/workflows/binary.yml (about)

     1  name: dev binary
     2  
     3  on:
     4    push:
     5      branches:
     6        - master
     7  
     8  jobs:
     9    publish:
    10      runs-on: ubuntu-latest
    11      steps:
    12        - name: checkout
    13          uses: actions/checkout@v4
    14          with:
    15            fetch-depth: 0
    16  
    17        - name: "Setup go"
    18          uses: actions/setup-go@v4
    19        
    20        - name: "Build binary"
    21          run: |
    22            make binary
    23  
    24        - uses: actions/upload-artifact@v3
    25          with:
    26            name: eru-core-ubuntu
    27            path: eru-core