Skip to content

Commit

Permalink
Merge branch 'main' of github.com:testthedocs/Openly
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChinchilla committed Aug 10, 2024
2 parents 10f900c + d7dc679 commit f53e017
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,23 @@ on:

jobs:

build:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- run: zip -r Openly.zip Openly -x "*.DS_Store"

- name: Create release
uses: ncipollo/release-action@v1
if: startsWith(github.ref, 'refs/tags/')
with:
generateReleaseNotes: true
artifacts: Openly.zip
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f53e017

Please sign in to comment.