Skip to content

Commit

Permalink
No lint and build
Browse files Browse the repository at this point in the history
  • Loading branch information
nojaf committed Dec 12, 2024
1 parent 82c43ad commit b867ddd
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@ on:
- cron: "34 1 * * *"

jobs:
lint:
uses: ./.github/workflows/lint.yml
# lint:
# uses: ./.github/workflows/lint.yml

test:
uses: ./.github/workflows/test.yml

build:
uses: ./.github/workflows/build.yml
# build:
# uses: ./.github/workflows/build.yml

release:
needs:
- lint
- test
- build
if: ${{ !github.event.repository.fork && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
permissions:
contents: read
id-token: write
uses: ./.github/workflows/release.yml
# release:
# needs:
# - lint
# - test
# - build
# if: ${{ !github.event.repository.fork && github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
# permissions:
# contents: read
# id-token: write
# uses: ./.github/workflows/release.yml

0 comments on commit b867ddd

Please sign in to comment.