Skip to content

Commit

Permalink
. e bump version to 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yelmuratoff committed May 10, 2024
1 parent 619fc17 commit 44a03aa
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 14 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,4 @@ jobs:
- name: Build and test
run: |
./bash/build_and_test.sh
shell: bash
- name: Check release tag
run: |
./bash/push_release.sh
shell: bash

# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: coverage/lcov.info
shell: bash
22 changes: 22 additions & 0 deletions .github/workflows/check_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check Release Tag

on:
workflow_run:
workflows: ["Build and test"]
types:
- completed

jobs:
check-release-tag:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
- name: Check release tag
run: |
./bash/push_release.sh
shell: bash
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.4.6
## 0.4.7

- Test script for create release tag for autopublish

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Add the following to your `pubspec.yaml` file:

```yaml
dependencies:
approval_tests: ^0.4.6
approval_tests: ^0.4.7
```
## 📚 How to use
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# * 0.0.4 for a minor release.
name: approval_tests
description: Approval Tests implementation in Dart. Inspired by ApprovalTests.
version: 0.4.6
version: 0.4.7
repository: https://github.com/approvals/ApprovalTests.Dart
homepage: https://github.com/approvals/ApprovalTests.Dart.git
issue_tracker: https://github.com/approvals/ApprovalTests.Dart/issues
Expand Down

0 comments on commit 44a03aa

Please sign in to comment.