Skip to content

Commit

Permalink
Deps and logs
Browse files Browse the repository at this point in the history
Use quick_xml instead of yaserde

Use thiserror instead of err_derive

Update deps to latest (except fcm), fcm will need to wait for reolink to update their fcm apis first in their app
  • Loading branch information
QuantumEntangledAndy committed Apr 4, 2024
1 parent acae5f9 commit 4c17fa9
Show file tree
Hide file tree
Showing 35 changed files with 1,413 additions and 1,729 deletions.
File renamed without changes.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
uses: fkirc/skip-duplicate-actions@v5
with:
# All of these options are optional, so you can remove them if you are happy with the defaults
concurrent_skipping: 'same_content_newer'
skip_after_successful_duplicate: 'false'
concurrent_skipping: "same_content_newer"
skip_after_successful_duplicate: "false"

native:
needs: pre_job
Expand Down Expand Up @@ -190,9 +190,9 @@ jobs:
id: vars
shell: bash
run: |
unset HAS_SECRET
if [ -n $SECRET ]; then HAS_SECRET='true' ; fi
echo "HAS_SECRET_TOKEN=${HAS_SECRET}" >> $GITHUB_OUTPUT
unset HAS_SECRET
if [ -n $SECRET ]; then HAS_SECRET='true' ; fi
echo "HAS_SECRET_TOKEN=${HAS_SECRET}" >> $GITHUB_OUTPUT
env:
SECRET: "${{ secrets.DOCKER_TOKEN }}"
- name: Check out the repo
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
REPO_NAME: ${{ steps.docker_repo.outputs.DOCKER_NWO }}
- name: Install latest rust
run: |
rustup toolchain install stable
rustup toolchain install stable
- name: Install toml-cli
run: |
cargo install toml-cli
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
uses: actions/checkout@v3
- name: Install latest rust
run: |
rustup toolchain install stable
rustup toolchain install stable
- name: Install toml-cli
run: |
cargo install toml-cli
Expand Down Expand Up @@ -401,4 +401,4 @@ jobs:
body: |
Neolink Release ${{steps.toml.outputs.version}}
draft: true
prerelease: ${{ contains(github.ref_name, 'rc') }}
prerelease: ${{ contains(github.ref_name, 'rc') }}
Loading

0 comments on commit 4c17fa9

Please sign in to comment.