Skip to content

Commit cbc8a28

Browse files
committed
Update Readme and fix CI
1 parent 3ca6399 commit cbc8a28

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.github/workflows/check_and_deploy.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,22 @@ jobs:
154154
keyStorePassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
155155
keyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
156156
env:
157-
BUILD_TOOLS_VERSION: "34.0.0"
157+
BUILD_TOOLS_VERSION: '34.0.0'
158158
# 4
159159
- name: Upload
160160
uses: actions/upload-artifact@v4
161161
with:
162162
name: Build Artifacts
163163
path: app/build/outputs/
164+
165+
- name: Delete release tag
166+
if: ${{ failure() || cancelled() }}
167+
uses: actions/github-script@v7
168+
with:
169+
github-token: ${{ secrets.GITHUB_TOKEN }}
170+
script: |
171+
github.rest.git.deleteRef({
172+
owner: context.repo.owner,
173+
repo: context.repo.repo,
174+
ref: "tags/${{ github.event.inputs.semver }}"
175+
})

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![CI-MASTER](https://github.com/jarroyoesp/ComposeMultiplatformApp/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/jarroyoesp/ComposeMultiplatformApp/actions/workflows/ci.yml)
2-
[![Latest release](https://img.shields.io/github/v/release/JetBrains/compose-multiplatform?color=blue&label=Compose%20multiplatform)](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.6.0)
3-
2+
[![Latest release](https://img.shields.io/github/v/release/JetBrains/compose-multiplatform?color=blue&label=Compose%20multiplatform)](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.6.11)
3+
![Kotlin Version](https://img.shields.io/badge/Kotlin-2.0.22-blue?logo=kotlin&logoColor=white)
44
<div align="center">
55
<img alt="Compose multiplatform charts" src="./screenshots/compose_multiplatform_logo.png"/>
66
<h1>🚀 Example project to show SpaceX data built with Kotlin Multiplatform and Compose UI Multiplatform</h1>

0 commit comments

Comments
 (0)