Skip to content

Commit

Permalink
build: add branch/PR info to dev release notes (#546)
Browse files Browse the repository at this point in the history
fix whitespace
  • Loading branch information
marfavi committed Nov 16, 2023
1 parent 21ba3d8 commit bb15ba8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codesee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This is v2.0 of this workflow file
on:
push:
branches: [ main ]
branches: [main]
pull_request_target:
types: [opened, synchronize, reopened]

Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Publish Development App

on:
pull_request:
branches: [ main ]
branches: [main]

jobs:
build:
Expand Down Expand Up @@ -36,6 +36,10 @@ jobs:
# serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: analogio-devs
file: Analog.ipa
releaseNotes: |
${{ github.event.pull_request.title }}
${{ github.event.pull_request.html_url }}
(branch ${{ github.head_ref }})
upload_android:
name: Upload Android build to Firebase App Distribution
Expand All @@ -47,7 +51,7 @@ jobs:
uses: actions/[email protected]
with:
name: android

- name: Firebase App Distribution
uses: wzieba/[email protected]
with:
Expand All @@ -57,3 +61,7 @@ jobs:
# serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
groups: analogio-devs
file: android.apk
releaseNotes: |
${{ github.event.pull_request.title }}
${{ github.event.pull_request.html_url }}
(branch ${{ github.head_ref }})
4 changes: 2 additions & 2 deletions .github/workflows/release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release Production App

on:
release:
types: [ created ]
types: [created]

jobs:
build:
Expand All @@ -26,7 +26,7 @@ jobs:
uses: actions/[email protected]
with:
name: ios

- name: Upload app to App Store Connect
env:
APP_STORE_CONNECT_USERNAME: ${{ secrets.APP_STORE_CONNECT_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test

on:
pull_request:
branches: [ main ]
branches: [main]

workflow_call:

Expand Down Expand Up @@ -30,4 +30,4 @@ jobs:
uses: codecov/[email protected]
with:
flags: unittests
file: coverage/lcov.info
file: coverage/lcov.info

0 comments on commit bb15ba8

Please sign in to comment.