mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
add missing git-clone to the deploy step in the release process (#8243)
* add missing git-clone to the deploy step in the release process
This commit is contained in:
parent
14c3798d4f
commit
7af58608d7
4
.github/workflows/release-to-publish.yml
vendored
4
.github/workflows/release-to-publish.yml
vendored
@ -36,6 +36,10 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
steps:
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: false
|
||||||
|
fetch-depth: 0
|
||||||
- name: Deploy updated JSON
|
- name: Deploy updated JSON
|
||||||
run: |
|
run: |
|
||||||
bash ./package/deploy_package_index.sh
|
bash ./package/deploy_package_index.sh
|
||||||
|
@ -16,7 +16,7 @@ pushd esp8266.github.io
|
|||||||
|
|
||||||
# Copy from published release, ensure JSON valid
|
# Copy from published release, ensure JSON valid
|
||||||
rm -f stable/package_esp8266com_index.json
|
rm -f stable/package_esp8266com_index.json
|
||||||
wget "https://github.com/esp8266/Arduino/releases/download/$tag/package_esp8266com_index.json" -O stable/package_esp8266com_index.json
|
wget "https://github.com/esp8266/Arduino/releases/download/"$tag"/package_esp8266com_index.json" -O stable/package_esp8266com_index.json
|
||||||
cat stable/package_esp8266com_index.json | jq empty
|
cat stable/package_esp8266com_index.json | jq empty
|
||||||
|
|
||||||
git add stable/package_esp8266com_index.json
|
git add stable/package_esp8266com_index.json
|
||||||
|
Loading…
x
Reference in New Issue
Block a user