Skip to content

Commit

Permalink
Merge branch 'development' of github.com:Crazy-Marvin/txt into develo…
Browse files Browse the repository at this point in the history
…pment
  • Loading branch information
janheinrichmerker committed Jan 27, 2021
2 parents 2e51ea6 + a0725ac commit d197428
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: "🧰 Install Flutter"
uses: subosito/flutter-action@v1
with:
flutter-version: "1.12.x"
flutter-version: "1.22.4"
- name: "👤 Disable tracking"
run: flutter config --no-analytics
- name: "🔑 Add secrets"
Expand All @@ -43,23 +43,23 @@ jobs:
- name: "✅ Test"
run: flutter test --coverage
- name: "📤 Upload test coverage report"
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v1
with:
name: "Test coverage report"
path: coverage/lcov.info
- name: "📤 Upload test coverage report to Codecov.io"
uses: codecov/codecov-action@v1.0.2
uses: codecov/codecov-action@v1
if: runner.os == 'Linux'
with:
token: ${{secrets.CODECOV_TOKEN}}
file: coverage/lcov.info
- name: "📤 Upload Android App Bundle"
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v1
with:
name: "Android App Bundle"
path: build/app/outputs/bundle/release/app-release.aab
- name: "📤 Upload Android APK"
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v1
with:
name: "Android APK"
path: build/app/outputs/apk/release/app-release.apk
path: build/app/outputs/apk/release/app-release.apk
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:
- name: "✏️ Generate changelog"
id: generate-changelog
if: runner.os == 'Linux'
uses: heinrichreimer/action-github-changelog-generator@v2.1
uses: heinrichreimer/action-github-changelog-generator@v2
with:
onlyLastTag: "true"
stripHeaders: "true"
stripGeneratorNotice: "true"
- name: "📤 Upload changelog"
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v1
with:
name: "Changelog"
path: CHANGELOG.md
- name: "🚀 Create GitHub release"
id: create-github-release
uses: actions/create-release@v1.0.1
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
Expand Down

0 comments on commit d197428

Please sign in to comment.