Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kaalleen committed Sep 4, 2022
1 parent 033c84e commit dbc14ff
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
branches-ignore:
- master
- main
tags:
- "v*"
name:
jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Compressing to zip
shell: bash
run:
7z a bingo.zip inkscape-bingo-extension/bingo/

- uses: actions/upload-artifact@v3
with:
name: bingo
path: bingo.zip
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: bingo.zip

0 comments on commit dbc14ff

Please sign in to comment.