From e753b56b8cb83eb6839f650de893b72588d17b65 Mon Sep 17 00:00:00 2001 From: Slavfox Date: Sat, 1 Feb 2020 22:41:46 +0100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..6500f20 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,22 @@ +name: Build fonts + +on: + push: + tags: + - '*' + +jobs: + deploy: + name: Make release + runs-on: ubuntu-latest + container: + image: "Dockerfile" + volumes: + - ${{ GITHUB_WORKSPACE }}/Cozette8:/cozette/ + + steps: + - uses: actions/checkout@v2 + - uses: ncipollo/release-action@v1 + with: + artifacts: ${{ GITHUB_WORKSPACE }}/Cozette8/build/* + token: ${{ secrets.GITHUB_TOKEN }}