Skip to content

Commit

Permalink
trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
j4qfrost committed Feb 28, 2024
1 parent 834b037 commit 92dfbff
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,19 @@ jobs:
echo '${{ secrets.PUB_CREDENTIALS }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
- name: Git config
run: |
cat pubspec.yaml
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Install melos
run: dart pub global activate melos
run: |
cat pubspec.yaml
dart pub global activate melos
- name: Format
run: dart fix --apply && dart format --fix .
- name: Uptick versions
run: |
cat pubspec.yaml
dart pub deps
melos sync-version
dart fix --apply && dart format --fix .
- name: Uptick versions
run: melos sync-version
- name: Changelog
run: git diff --unified=0 $GITHUB_SHA packages/cli/CHANGELOG.md | tail +6 | sed -e 's/^\+//' > CHANGES.txt
- name: Cache Source
Expand Down

0 comments on commit 92dfbff

Please sign in to comment.