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 fc01c52
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,25 @@ 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: Upload style to release
uses: svenstaro/upload-release-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Openly.zip
- name: generate release notes
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true

0 comments on commit fc01c52

Please sign in to comment.