This workflow file publishes new action releases to the immutable action package of the same name as this repo. --------- Co-authored-by: Parker Brown <17183625+parkerbxyz@users.noreply.github.com>
18 lines
336 B
YAML
18 lines
336 B
YAML
name: 'Publish Immutable Action'
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
packages: write
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Publish Immutable Action
|
|
uses: actions/publish-immutable-action@0.0.3
|