Fixes to action/workflow
Some checks failed
Some checks failed
This commit is contained in:
parent
3471e70c66
commit
f8e6b9c5c6
1 changed files with 4 additions and 4 deletions
|
@ -40,7 +40,7 @@ jobs:
|
||||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/tags/${GITHUB_REF_NAME}" \
|
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/tags/${GITHUB_REF_NAME}" \
|
||||||
-H 'accept: application/json' -o "${THE_ACTION_WORKING_DIRECTORY}/release_info.json" 2>/dev/null
|
-H 'accept: application/json' -o "${THE_ACTION_WORKING_DIRECTORY}/release_info.json" 2>/dev/null
|
||||||
BUILD_ASSET_EXISTS=0
|
BUILD_ASSET_EXISTS=0
|
||||||
for asset in $(jq '.assets.[].name' < "${THE_ACTION_WORKING_DIRECTORY}/release_info.json"); do
|
for asset in $(jq '.assets.[].name' < "${THE_ACTION_WORKING_DIRECTORY}/release_info.json" | tr -d '"'); do
|
||||||
if [[ "$asset" == "$BUILD_ASSET_NAME" ]]; then
|
if [[ "$asset" == "$BUILD_ASSET_NAME" ]]; then
|
||||||
BUILD_ASSET_EXISTS=1
|
BUILD_ASSET_EXISTS=1
|
||||||
break
|
break
|
||||||
|
@ -92,7 +92,7 @@ jobs:
|
||||||
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/tags/${GITHUB_REF_NAME}" \
|
"https://git.seodisparate.com/api/v1/repos/stephenseo/break_interval/releases/tags/${GITHUB_REF_NAME}" \
|
||||||
-H 'accept: application/json' -o "${THE_ACTION_WORKING_DIRECTORY}/release_info.json" 2>/dev/null
|
-H 'accept: application/json' -o "${THE_ACTION_WORKING_DIRECTORY}/release_info.json" 2>/dev/null
|
||||||
BUILD_ASSET_EXISTS=0
|
BUILD_ASSET_EXISTS=0
|
||||||
for asset in $(jq '.assets.[].name' < "${THE_ACTION_WORKING_DIRECTORY}/release_info.json"); do
|
for asset in $(jq '.assets.[].name' < "${THE_ACTION_WORKING_DIRECTORY}/release_info.json" | tr -d '"'); do
|
||||||
if [[ "$asset" == "$BUILD_ASSET_NAME" ]]; then
|
if [[ "$asset" == "$BUILD_ASSET_NAME" ]]; then
|
||||||
BUILD_ASSET_EXISTS=1
|
BUILD_ASSET_EXISTS=1
|
||||||
break
|
break
|
||||||
|
@ -140,7 +140,7 @@ jobs:
|
||||||
- name: Update and upgrade with apt
|
- name: Update and upgrade with apt
|
||||||
run: apt-get --yes update && apt-get --yes upgrade
|
run: apt-get --yes update && apt-get --yes upgrade
|
||||||
- name: Get necessary packages
|
- name: Get necessary packages
|
||||||
run: apt-get --yes install gcc jq curl cmake make zstd sed
|
run: apt-get --yes install gcc jq curl cmake make zstd sed git
|
||||||
- name: Get release info
|
- name: Get release info
|
||||||
run: |
|
run: |
|
||||||
curl -X GET \
|
curl -X GET \
|
||||||
|
@ -148,7 +148,7 @@ jobs:
|
||||||
-H 'accept: application/json' -o release_info.json
|
-H 'accept: application/json' -o release_info.json
|
||||||
- name: Check if asset exists
|
- name: Check if asset exists
|
||||||
run: |
|
run: |
|
||||||
for asset in $(jq '.assets[].name' < release_info.json); do
|
for asset in $(jq '.assets[].name' < release_info.json | tr -d '"'); do
|
||||||
if [[ "$asset" == "$BUILD_ASSET_NAME" ]]; then
|
if [[ "$asset" == "$BUILD_ASSET_NAME" ]]; then
|
||||||
touch asset_exists
|
touch asset_exists
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue