Skip to content

Commit

Permalink
fix: syntax error in action (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
thelukewalton committed Jun 26, 2024
1 parent b8b4827 commit 4b425c7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
25 changes: 11 additions & 14 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code Quality
name: CI - Code Quality
on:
workflow_call:

Expand All @@ -7,16 +7,13 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: ${{github.event.pull_request.head.repo.full_name}}
ref: ${{ github.head_ref }}
- uses: subosito/flutter-action@v2
with:
cache: true
- uses: ZebraDevs/flutter-code-quality@latest
with:
token: ${{secrets.GITHUB_TOKEN}}
- uses: actions/checkout@v4
with:
repository: ${{github.event.pull_request.head.repo.full_name}}
ref: ${{ github.head_ref }}
- uses: subosito/flutter-action@v2
with:
cache: true
- uses: ZebraDevs/flutter-code-quality@v1.0.0
with:
token: ${{secrets.GITHUB_TOKEN}}
2 changes: 1 addition & 1 deletion .github/workflows/on-main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: release-please
name: CI - On Main
on:
push:
branches:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CI - Release"
name: CI - On Release
on:
push:
tags:
Expand All @@ -25,6 +25,7 @@ jobs:
run: dart pub publish --dry-run
- name: Publish
run: dart pub publish --force

deploy-website:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 4b425c7

Please sign in to comment.