Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: 'release-exists-action: true'
id: exists
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ If found, the url of the release.

To check if a release with the tag `v1.0` exists in your repo:
```yaml
- uses: mukunku/release-exists-action@v1.0.0
- uses: mukunku/release-exists-action@v1.1.0
id: check-release
with:
tag: 'v1.0'
Expand All @@ -54,7 +54,7 @@ To check if a release with the tag `v1.0` exists in your repo:

To check if a non-draft release with the tag [`v1.0.0`](https://github.com/actions/checkout/releases/tag/v1.0.0) exists in the repo `actions/checkout`:
```yaml
- uses: mukunku/release-exists-action@v1.0.0
- uses: mukunku/release-exists-action@v1.1.0
id: check-release
with:
tag: 'v1.0.0'
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ outputs:
url:
description: 'Url to the release, if found.'
runs:
using: 'node20'
using: 'node24'
main: 'index.js'
branding:
icon: 'bookmark'
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ const github = require('@actions/github');

async function run() {
try {
//Get input
const tag = process.env.TAG || process.env.INPUT_TAG || '';
const repoInput = core.getInput('repo') || process.env.GITHUB_REPOSITORY;

Expand Down
1 change: 0 additions & 1 deletion node_modules/.bin/uuid

This file was deleted.

17 changes: 0 additions & 17 deletions node_modules/.bin/uuid.cmd

This file was deleted.

28 changes: 0 additions & 28 deletions node_modules/.bin/uuid.ps1

This file was deleted.

Loading