Skip to content

Commit

Permalink
Merge pull request #5 from liquidz00/dev
Browse files Browse the repository at this point in the history
Automated tests passed, tool functions as expected.
  • Loading branch information
liquidz00 authored Mar 28, 2024
2 parents 96e9a59 + e6391db commit 7592dec
Show file tree
Hide file tree
Showing 5 changed files with 418 additions and 108 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Generate Release Notes

on:
release:
types: [created]

jobs:
release-notes:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Generate Release Notes
id: release_notes
uses: actions/create-release-notes@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
This release has been automatically generated by a GitHub Action.
## Installation Instructions
For detailed installation instructions, please refer to the [Wiki](https://github.com/liquidz00/Patcher/wiki#installation) or the [README](https://github.com/liquidz00/Patcher/wiki#installation)
## Release notes
${{ steps.release_notes.outputs.release-notes }}
draft: false
prerelease: false
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,9 @@ Patcher leverages the Jamf Pro API to fetch patch management data and generate c

### Installation

1. **Download the Installer Script**
Instead of cloning the repository, you now simply need to download and run the installer script, which will handle the setup, including cloning the repository.
1. **Run the Installer**
```shell
curl -O https://raw.githubusercontent.com/liquidz00/Patcher/main/installer.sh && bash ./installer.sh
bash -c "$(curl -fsSL https://raw.githubusercontent.com/liquidz00/Patcher/main/installer.sh)"
```
2. **Follow the Installer Script Prompts**
The installer script will guide you through setting up your Jamf Pro instance details and installing project dependencies. Follow the prompts to enter your Jamf Pro URL, Client ID, and Client Secret. If you already have a Bearer Token, you can pass the value to the installer script, otherwise the installer script will generate one for you. You'll also be asked to customize the report header and footer text. Optionally, you can opt to use a custom font instead of the default font [Assistant](https://fonts.google.com/specimen/Assistant).
Expand Down
Loading

0 comments on commit 7592dec

Please sign in to comment.