Skip to content

Commit

Permalink
fix: fixing release action (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj authored Sep 19, 2024
1 parent 7f00a4c commit 6a47743
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
27 changes: 22 additions & 5 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,39 @@
name: Continuous Integration
name: Test and Release

on:
push:
branches:
- main
branches: [main]
paths-ignore:
- '.github/sample.feature'
- '**.md'
- 'badges/**'
- '.eslintignore'
- '.github/linters/**'
- '.gitignore'
- '.gitattributes'
- '.prettier*'
- 'renovate.json'
workflow_dispatch:

permissions:
contents: read
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
test:
name: Action Test
permissions:
contents: read
uses: ./.github/workflows/reusable-tests.yml

publish:
name: Publish
runs-on: ubuntu-22.04
needs: [test]
permissions:
contents: write
actions: write
attestations: write
steps:
- name: Checkout
id: checkout
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
steps:
- name: Extract feature content
id: feature
uses: bcgov-nr/action-gherkin-issue-processor.yml@main
uses: bcgov-nr/action-gherkin-issue-processor@main
with:
issue: ${{ github.event.issue.number }}
- name: Save feature content
Expand All @@ -121,7 +121,7 @@ jobs:
steps:
- name: Extract feature content
id: feature
uses: bcgov-nr/action-gherkin-issue-processor.yml@main
uses: bcgov-nr/action-gherkin-issue-processor@main
with:
issue: ${{ github.event.issue.number }}
owner: ${{ github.repository_owner }}
Expand Down

0 comments on commit 6a47743

Please sign in to comment.