mirror of
https://github.com/slavfox/Cozette.git
synced 2026-03-11 08:54:33 +00:00
Create main.yml
This commit is contained in:
parent
666cb04c44
commit
e753b56b8c
1 changed files with 22 additions and 0 deletions
22
.github/workflows/main.yml
vendored
Normal file
22
.github/workflows/main.yml
vendored
Normal file
|
|
@ -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 }}
|
||||
Loading…
Reference in a new issue