Compare commits
No commits in common. "83595cfadfff61d64659be7d99d99991dd242234" and "63e72076eda4f13fe391ea07956ef39800ccaabc" have entirely different histories.
83595cfadf
...
63e72076ed
18
.github/workflows/providers/gitea-release.yml
vendored
18
.github/workflows/providers/gitea-release.yml
vendored
@ -2,19 +2,6 @@ name: Gitea Release
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
|
||||||
gitea_ref_name:
|
|
||||||
description: 'Gitea ref name'
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
gitea_server_url:
|
|
||||||
description: 'Gitea server URL'
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
gitea_repository:
|
|
||||||
description: 'Gitea repository'
|
|
||||||
required: true
|
|
||||||
type: string
|
|
||||||
secrets:
|
secrets:
|
||||||
GITEA_TOKEN:
|
GITEA_TOKEN:
|
||||||
required: true
|
required: true
|
||||||
@ -71,9 +58,6 @@ jobs:
|
|||||||
- name: Create Release
|
- name: Create Release
|
||||||
env:
|
env:
|
||||||
TOKEN: ${{ secrets.GITEA_TOKEN }}
|
TOKEN: ${{ secrets.GITEA_TOKEN }}
|
||||||
GITEA_REF_NAME: ${{ inputs.gitea_ref_name }}
|
|
||||||
GITEA_SERVER_URL: ${{ inputs.gitea_server_url }}
|
|
||||||
GITEA_REPOSITORY: ${{ inputs.gitea_repository }}
|
|
||||||
run: |
|
run: |
|
||||||
TAG="${GITEA_REF_NAME}"
|
TAG="${GITEA_REF_NAME}"
|
||||||
API_URL="${GITEA_SERVER_URL}/api/v1"
|
API_URL="${GITEA_SERVER_URL}/api/v1"
|
||||||
@ -96,7 +80,7 @@ jobs:
|
|||||||
|
|
||||||
RELEASE_ID=$(echo "$RESPONSE" | grep -o '"id":[0-9]*' | cut -d':' -f2 | head -n1)
|
RELEASE_ID=$(echo "$RESPONSE" | grep -o '"id":[0-9]*' | cut -d':' -f2 | head -n1)
|
||||||
|
|
||||||
if [ -n "$RELEASE_ID"; then
|
if [ -n "$RELEASE_ID" ]; then
|
||||||
echo "Release created with ID: $RELEASE_ID"
|
echo "Release created with ID: $RELEASE_ID"
|
||||||
|
|
||||||
# Upload files
|
# Upload files
|
||||||
|
@ -1,10 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [1.2.40] - 2025-02-19
|
|
||||||
### Added
|
|
||||||
- add inputs for Gitea release workflow and increment version to 1.2.40
|
|
||||||
|
|
||||||
|
|
||||||
## [1.2.39] - 2025-02-19
|
## [1.2.39] - 2025-02-19
|
||||||
### Added
|
### Added
|
||||||
- update Gitea release workflow to use Python virtual environment and increment version to 1.2.39
|
- update Gitea release workflow to use Python virtual environment and increment version to 1.2.39
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
; https://docs.platformio.org/page/projectconf.html
|
; https://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
version = "1.2.40"
|
version = "1.2.39"
|
||||||
|
|
||||||
[env:esp32dev]
|
[env:esp32dev]
|
||||||
platform = espressif32
|
platform = espressif32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user