Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-esp32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-esp32
Commits
0b8eedea
Unverified
Commit
0b8eedea
authored
Aug 31, 2024
by
Lucas Saavedra Vaz
Committed by
GitHub
Aug 31, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci(release): Make workflows dependent on release completion (#10260)
parent
254c5e43
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
7 deletions
+36
-7
.github/workflows/docs_deploy.yml
.github/workflows/docs_deploy.yml
+9
-3
.github/workflows/upload-idf-component.yml
.github/workflows/upload-idf-component.yml
+27
-4
No files found.
.github/workflows/docs_deploy.yml
View file @
0b8eedea
name
:
Documentation Build and Production Deploy CI
on
:
release
:
types
:
[
published
]
workflow_run
:
workflows
:
[
"
ESP32
Arduino
Release"
]
types
:
-
completed
push
:
branches
:
-
release/v2.x
...
...
@@ -12,7 +14,6 @@ on:
-
'
.github/workflows/docs_deploy.yml'
jobs
:
deploy-prod-docs
:
name
:
Deploy Documentation on Production
runs-on
:
ubuntu-22.04
...
...
@@ -20,6 +21,11 @@ jobs:
run
:
shell
:
bash
steps
:
-
name
:
Check if release workflow is successful
if
:
${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion != 'success' }}
run
:
|
echo "Release workflow failed. Exiting..."
exit 1
-
uses
:
actions/checkout@v4
with
:
submodules
:
true
...
...
.github/workflows/upload-idf-component.yml
View file @
0b8eedea
name
:
Push components to https://components.espressif.com
on
:
push
:
tags
:
-
'
*'
workflow_run
:
workflows
:
[
"
ESP32
Arduino
Release"
]
types
:
-
completed
jobs
:
upload_components
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Get the release tag
run
:
|
if [ "${{ github.event.workflow_run.conclusion }}" != "success" ]; then
echo "Release workflow failed. Exiting..."
exit 1
fi
branch=${{ github.event.workflow_run.head_branch }}
if [[ $branch == refs/tags/* ]]; then
tag="${branch#refs/tags/}"
elif [[ $branch =~ ^[0-9]+\.[0-9]+\.[0-9]+.*$ ]]; then
tag=$branch
else
echo "Tag not found in $branch. Exiting..."
exit 1
fi
echo "Tag: $tag"
echo "RELEASE_TAG=$tag" >> $GITHUB_ENV
-
uses
:
actions/checkout@v4
with
:
submodules
:
"
recursive"
...
...
@@ -15,6 +38,6 @@ jobs:
uses
:
espressif/upload-components-ci-action@v1
with
:
name
:
arduino-esp32
version
:
${{
github.ref_name
}}
version
:
${{
env.RELEASE_TAG
}}
namespace
:
espressif
api_token
:
${{ secrets.IDF_COMPONENT_API_TOKEN }}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment