From 4810e2a4c699a18fee540c395d07b2d6c47fa6a4 Mon Sep 17 00:00:00 2001 From: Kirill <32126161+ksponomarev@users.noreply.github.com> Date: Tue, 30 Jun 2020 09:50:31 +0000 Subject: [PATCH] Add building image --- --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: Docker build + +on: + push: + branches: [ master ] + schedule: + - cron: '* 1 * * *' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build image + run: docker build -t nft_parachain . -- gitstuff