mirror of
https://github.com/actions/setup-python.git
synced 2025-04-23 11:33:43 +07:00

* add publish immutable action * depricate ubuntu-20.04 * fix check failures * fix check failures on older versions * check failures fix for older versions * check failure fix * check failure fix * compatable version update * compatable version update for ubuntu-22.04 and windows * fix * update e2e tests format * fomat update * updated wording
21 lines
376 B
YAML
21 lines
376 B
YAML
name: 'Publish Immutable Action Version'
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checking out
|
|
uses: actions/checkout@v4
|
|
- name: Publish
|
|
id: publish
|
|
uses: actions/publish-immutable-action@v0.0.4
|