Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ jobs:

- name: Snapshot Release Check
run: |
echo -e "\nIS_SNAPSHOT_RELEASE=$( [[ "${CIRCLE_BRANCH}" =~ ^epic.* ]] && echo true || echo false )" >> gradle.properties
echo -e "\nIS_SNAPSHOT_RELEASE=$( [[ "${{ github.ref_name }}" == epic/* ]] && echo true || echo false )" >> ~/.gradle/gradle.properties
cat ~/.gradle/gradle.properties

- name: Publish to Maven
run: ./gradlew lib:assemble publish
Expand Down Expand Up @@ -125,11 +126,11 @@ jobs:
echo "SIGNING_KEY=${SIGNING_KEY}">> ~/.gradle/gradle.properties
echo "SIGNING_KEY_PWD=${SIGNING_KEY_PWD}">> ~/.gradle/gradle.properties
echo "MAPBOX_DOWNLOADS_TOKEN=${MAPBOX_DOWNLOADS_TOKEN}">> ~/.gradle/gradle.properties
cat ~/.gradle/gradle.properties

- name: Snapshot Release Check
run: |
echo -e "\nIS_SNAPSHOT_RELEASE=$( [[ "${CIRCLE_BRANCH}" =~ ^epic.* ]] && echo true || echo false )" >> gradle.properties
echo -e "\nIS_SNAPSHOT_RELEASE=$( [[ "${{ github.ref_name }}" == epic/* ]] && echo true || echo false )" >> ~/.gradle/gradle.properties
cat ~/.gradle/gradle.properties

- name: Publish to Maven
run: ./gradlew :lib-compose:assemble publish
Loading