Skip to content

Commit 47211d7

Browse files
committed
FInal fixes and change to reusable workflow
1 parent a45f4b4 commit 47211d7

File tree

1 file changed

+10
-17
lines changed

1 file changed

+10
-17
lines changed
Lines changed: 10 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
1-
# From: https://github.com/ncipollo/release-action
1+
# Uses action: https://github.com/ncipollo/release-action
22

33
name: Create Release
44

55
on:
66
workflow_dispatch:
77
inputs:
8-
tag:
9-
description: Draft release tag
10-
required: true
11-
type: string
8+
tag:
9+
description: Release tag name
10+
required: true
11+
type: string
1212

1313
jobs:
14-
release:
15-
runs-on: ubuntu-latest
16-
permissions:
17-
contents: write
18-
steps:
19-
- uses: actions/checkout@v3
20-
- uses: ncipollo/release-action@v1
21-
with:
22-
generateReleaseNotes: true
23-
name: ${{ github.event.repository.name }} ${{ github.ref_name }}
24-
skipIfReleaseExists: true
25-
tag: ${{ inputs.tag }}
14+
name: call-release-workflow:
15+
uses: Andy4495/.github/.github/workflows/arduino-compile-sketches.yml@main
16+
with:
17+
tag: ${{ inputs.tag }}
18+

0 commit comments

Comments
 (0)