Skip to content

Commit

Permalink
Merge branch 'release/1.0.0-beta.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
nekofar committed Jul 27, 2023
2 parents 8f913d3 + cd8dd9b commit ea09baf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
# Create a new GitHub release using the gathered information
- name: Create the release
uses: nekofar/[email protected].6
uses: nekofar/[email protected].8
with:
token: ${{ github.token }} # Authentication token from GitHub
tag: ${{ github.ref_name }} # The name of the tag to be released
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## [1.0.0-beta.4] - 2023-07-27

### <!-- 04 -->Refactor

- Add option to activate debug mode in `entrypoint.sh`

### <!-- 07 -->Continuous Integrations

- Bump nekofar/create-github-release from 1.0.6 to 1.0.8

## [1.0.0-beta.3] - 2023-07-26

### <!-- 02 -->Bug Fixes
Expand Down
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
# Making sure the script stops if any of the commands fails
set -eu

# Enable debug mode if RUNNER_DEBUG is 1
[[ "${RUNNER_DEBUG:-0}" -eq 1 ]] && set -x

# Function to get visibility of the repository, whether public or private
get_repo_visibility() {
gh repo view "$GITHUB_REPOSITORY" --json visibility \
Expand Down

0 comments on commit ea09baf

Please sign in to comment.