Stable release ποΈπ¦β #22
This file contains hidden or 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: Stable release ποΈπ¦ | ||
on: | ||
release: | ||
types: | ||
- released | ||
- prereleased | ||
workflow_dispatch: | ||
jobs: | ||
test: | ||
uses: gibahjoe/openapi-generator-dart/.github/workflows/code_quality.yml@master | ||
with: | ||
codecov_token: ${{ secrets.CODECOV_TOKEN }} | ||
Check failure on line 14 in .github/workflows/release.yml
|
||
publish: | ||
name: Publish Packages with Melos | ||
runs-on: ubuntu-latest | ||
needs: [test] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dart-lang/setup-dart@v1 | ||
- uses: bluefireteam/melos-action@v3 | ||
- name: Authenticate with Pub | ||
run: echo "${{ secrets.PUB_CREDENTIAL_JSON }}" > ~/.pub-cache/credentials.json | ||
- name: Publish | ||
run: melos publish --no-dry-run --yes |