diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ac6f5a0..eacfc4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,13 +1,9 @@ name: Release Next Version on: - workflow_dispatch: - inputs: - release_tag: - description: 'Release Tag' - required: true - type: string + push: + branches: [ "*" ] env: - NEW_VERSION: ${{ github.event.inputs.release_tag }} + NEW_VERSION: 0.1.1 jobs: release: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a6423b..fdf484d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,4 +17,9 @@ jobs: - name: Run test run: | flutter pub get - flutter test --coverage --branch-coverage --reporter github + flutter test --coverage --reporter github + - name: Upload Test Report + uses: codecov/codecov-action@v3 + with: + name: report + files: coverage/lcov.info \ No newline at end of file