summaryrefslogtreecommitdiff
path: root/.github/workflows/dist.yaml
blob: c7ce142e98711e71a6773e245fa21e0188e24b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: dist

on:
  push:
    branches: [ release/* ]

jobs:
  dist:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - run: env | sort

    - name: Get image
      run: |
        time docker pull yamlio/libyaml-dev
        docker images | grep libyaml

    - run: |
        make -C pkg/docker libyaml-dist-ci
        ls -l pkg/docker/output

    - uses: actions/upload-artifact@v2
      with:
        name: release
        path: pkg/docker/output/yaml-0*