Skip to content

Commit

Permalink
Merge branch 'main' into ShreyamMaity/main
Browse files Browse the repository at this point in the history
  • Loading branch information
leoafarias committed Jul 6, 2022
2 parents 7b4c07d + 7427b0a commit dc411ab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy_chocolatey.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
channel: stable

- name: Install dependencies
run: pub get
run: dart pub get

- name: Run Builder for Version
run: pub run build_runner build --delete-conflicting-outputs
run: dart pub run build_runner build --delete-conflicting-outputs

- name: Run Test
run: pub run test
run: dart pub run test

- name: Deploy Chocolatey (Windows)
run: pub run grinder pkg-chocolatey-deploy
run: dart pub run grinder pkg-chocolatey-deploy
7 changes: 5 additions & 2 deletions .github/workflows/deploy_homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ jobs:
env:
PUB_CREDENTIALS: ${{ secrets.PUB_CREDENTIALS }}
GITHUB_TOKEN: ${{ secrets.HOMEBREW_FVM_GH_TOKEN }}
container:
image: google/dart:latest

steps:
- uses: actions/checkout@v1
- name: Setup Dart
uses: DanTup/gh-actions/setup-dart@master
with:
channel: stable

- name: Install dependencies
run: dart pub get
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ executables:

dependencies:
args: ^2.3.1
cli_notify: ^0.0.3
cli_notify: ^0.0.4
cli_util: ^0.3.5
console: ^4.1.0
date_format: ^2.0.6
Expand Down

0 comments on commit dc411ab

Please sign in to comment.