-
Notifications
You must be signed in to change notification settings - Fork 123
33 lines (30 loc) · 846 Bytes
/
release.yml
File metadata and controls
33 lines (30 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Release
on:
workflow_dispatch:
inputs:
dry_run:
description: "Dry run (no git push, no tag, no GitHub release, no Hex publish)"
required: false
type: boolean
default: false
hex_dry_run:
description: "Hex dry run only (run all git/release steps, but skip actual Hex publish)"
required: false
type: boolean
default: false
skip_tests:
description: "Skip tests before release"
required: false
type: boolean
default: false
permissions:
contents: write
jobs:
release:
name: Release
uses: agentjido/github-actions/.github/workflows/elixir-release.yml@main
with:
dry_run: ${{ inputs.dry_run }}
hex_dry_run: ${{ inputs.hex_dry_run }}
skip_tests: ${{ inputs.skip_tests }}
secrets: inherit