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.
2 parents 10f900c + d7dc679 commit f53e017Copy full SHA for f53e017
.github/workflows/release.yml
@@ -7,12 +7,23 @@ on:
7
8
jobs:
9
10
- build:
+ publish:
11
runs-on: ubuntu-latest
12
permissions:
13
contents: write
14
steps:
15
- - uses: actions/checkout@v3
16
- - uses: ncipollo/release-action@v1
17
- with:
18
- generateReleaseNotes: true
+ - name: Checkout
+ uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
19
+
20
+ - run: zip -r Openly.zip Openly -x "*.DS_Store"
21
22
+ - name: Create release
23
+ uses: ncipollo/release-action@v1
24
+ if: startsWith(github.ref, 'refs/tags/')
25
26
+ generateReleaseNotes: true
27
+ artifacts: Openly.zip
28
+ token: ${{ secrets.GITHUB_TOKEN }}
29
0 commit comments