We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13f4f54 commit 2120c80Copy full SHA for 2120c80
.editorconfig
@@ -8,3 +8,6 @@ trim_trailing_whitespace = true
8
insert_final_newline = true
9
indent_style = space
10
indent_size = 4
11
+
12
+[*.yml]
13
+indent_size = 2
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+name: Release
2
3
+on:
4
+ push:
5
+ tags: ['**']
6
7
+permissions:
+ contents: write
+jobs:
+ release:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
+ - name: Build
19
+ run: |
20
+ tar -czf fci-breeds.tar.gz fci-breeds.csv
21
+ - name: Release
22
+ uses: softprops/action-gh-release@v2
23
+ with:
24
+ files: fci-breeds.tar.gz
0 commit comments