Skip to content

Commit

Permalink
more submodules shennanigans
Browse files Browse the repository at this point in the history
  • Loading branch information
pljakobs committed Dec 21, 2024
1 parent 22ce3fd commit 0fbd904
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
else
echo "::set-output name=updated::false"
fi
build:
build:
runs-on: ubuntu-latest
needs: check-updates
if: needs.check-updates.outputs.updated == 'true'
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build_firmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,26 @@ on:
types: [frontend-build-completed]

jobs:
setup:
build:
runs-on: ubuntu-latest
strategy:
matrix:
soc: [esp8266, esp32, esp32c3]
release: [0, 1]WORKDIR "/opt/sming"
release: [0, 1]

steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: develop
submodules: true # Ensure submodules are checked out

- name: synchronize submodules
- name: Synchronize submodules
run: git submodule update --init --recursive

- name: pull docker image
run: |
docker pull docker.io/pjakobs/sming:latest
- name: Pull Docker Image
run: docker pull docker.io/pjakobs/sming:latest

- name: Get Latest Successful Workflow Run
id: get_run
run: |
Expand All @@ -52,7 +52,7 @@ jobs:
run: |
if [ -d ./webapp ]; then
rm -rf ./webapp
mkdir .webapp
mkdir ./webapp
fi
artifact_url=$(curl -s -H "Authorization: token ${{ secrets.artifact_download_token }}" \
"https://api.github.com/repos/pljakobs/esp_rgb_webapp2/actions/runs/${{ env.latest_run_id }}/artifacts" | \
Expand Down

0 comments on commit 0fbd904

Please sign in to comment.