Skip to content

fix: loosen dependency constraints for meta and collection #18

fix: loosen dependency constraints for meta and collection

fix: loosen dependency constraints for meta and collection #18

Workflow file for this run

name: Publish
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
container:
image: dart:3.5.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: pub get
- name: Publish
run: |
echo "Copy credentials"
mkdir -p ~/.pub-cache
echo "$CREDENTIAL_JSON" > ~/.pub-cache/credentials.json
echo "Run pub publish --force"
dart pub publish --force
env:

Check failure on line 25 in .github/workflows/publish_to_pub.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish_to_pub.yaml

Invalid workflow file

You have an error in your yaml syntax on line 25
CREDENTIAL_JSON: ${{ secrets.CREDENTIAL_JSON }}