Skip to content

Commit

Permalink
Fix CI steps filter
Browse files Browse the repository at this point in the history
  • Loading branch information
comigor committed Jan 26, 2023
1 parent 590be17 commit f47c128
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push_main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- test
- analyze
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta'
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@master
- id: check_version_and_changelog
Expand All @@ -74,7 +74,7 @@ jobs:
deploy:
needs: create-tag-and-release
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta'
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@master
- uses: dart-lang/[email protected]
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## 0.4.2
- (Really) fix CI (I'm trying not to commit on master, but it's always difficult to test CI)

## 0.4.1
- Fix CI and update package to use lints

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: big_decimal
version: 0.4.1
version: 0.4.2
description: >
A bugless implementation of BigDecimal in Dart based on Java's BigDecimal
Expand Down

0 comments on commit f47c128

Please sign in to comment.