summaryrefslogtreecommitdiff
path: root/.github/workflows/dist.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/dist.yaml')
-rw-r--r--.github/workflows/dist.yaml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/dist.yaml b/.github/workflows/dist.yaml
new file mode 100644
index 0000000..c7ce142
--- /dev/null
+++ b/.github/workflows/dist.yaml
@@ -0,0 +1,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*
+