Skip to content

Commit

Permalink
action cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrrv committed Jun 28, 2024
1 parent 0306de1 commit 614c5f5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
name: Create Release
name: Create Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Permissions
run: chmod +x build.sh
shell: bash

- name: Build
run: ./build.sh
shell: bash

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -28,6 +31,7 @@ jobs:
release_name: Release ${{ github.ref }}
draft: true
prerelease: false

- name: Publish Built zip
uses: actions/upload-release-asset@v1
env:
Expand All @@ -44,9 +48,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Permissions
run: chmod +x build.sh
shell: bash

- name: Generate Docs
run: php ./generateDocs.php
shell: bash

0 comments on commit 614c5f5

Please sign in to comment.