Skip to content

Commit

Permalink
ci: regenerate workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions YAML generator [bot] committed Nov 16, 2023
1 parent b04b02c commit 10950e3
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,35 @@ on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Test running on ${{github.repository}}
run: echo Commit ${{github.sha}} seems to be working
- name: Test running on ${{github.repository}}
run: echo Commit ${{github.sha}} from a merge key seems to be working
- name: Test running on ${{github.repository}}
run: echo Commit ${{github.sha}} from an anchor seems to be working
release:
concurrency:
group: release-${{ github.event.number || github.ref }}
permissions:
contents: write
packages: write
needs:
- test
runs-on: ubuntu-22.04
if: >-
!github.event.repository.fork && (
github.event_name != 'pull_request'
|| github.event.pull_request.head.repo.full_name == github.repository
)
steps:
- name: Install Node
uses: actions/[email protected]
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install dependencies
run: npm install
- name: Semantic Release
run: npx semantic-release

0 comments on commit 10950e3

Please sign in to comment.