Skip to content

Stable release πŸ•ŠοΈπŸ“¦βœ… #22

Stable release πŸ•ŠοΈπŸ“¦βœ…

Stable release πŸ•ŠοΈπŸ“¦βœ… #22

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Stable release πŸ•ŠοΈπŸ“¦

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 14, Col: 22): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.CODECOV_TOKEN
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