fix: App service hidden links (#195) #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "CODEOWNERS" | |
- "**.md" | |
- ".**" | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
id: checkout | |
# from https://github.com/actions/checkout/commits/main | |
uses: actions/checkout@1f9a0c22da41e6ebfa534300ef656657ea2c6707 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- name: Release | |
id: release | |
# from https://github.com/cycjimmy/semantic-release-action/commits/main | |
uses: cycjimmy/semantic-release-action@bdd914ff2423e2792c73475f11e8da603182f32d | |
with: | |
semantic_version: 18.0.0 | |
extra_plugins: | | |
@semantic-release/[email protected] | |
@semantic-release/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |