Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: astarte-platform/astarte-device-sdk-csharp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.7.0
Choose a base ref
...
head repository: astarte-platform/astarte-device-sdk-csharp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 15, 2024

  1. Merge pull request #87 from osmanhadzic/fwd-0.7

    Fwd 0.7
    harlem88 authored Nov 15, 2024
    Copy the full SHA
    96041ac View commit details

Commits on Nov 20, 2024

  1. Update docs-workflow.yaml

    Add symlink update step to docs workflow for latest version.
    
    Closes #83
    
    Signed-off-by: Osman Hadzic <osman.hadzic@secomind.com>
    osmanhadzic committed Nov 20, 2024
    Copy the full SHA
    d9895cd View commit details

Commits on Nov 22, 2024

  1. Merge pull request #88 from osmanhadzic/docs/fix-sdk-docs

    Update docs-workflow.yaml
    harlem88 authored Nov 22, 2024
    Copy the full SHA
    83bd064 View commit details
Showing with 7 additions and 0 deletions.
  1. +7 −0 .github/workflows/docs-workflow.yaml
7 changes: 7 additions & 0 deletions .github/workflows/docs-workflow.yaml
Original file line number Diff line number Diff line change
@@ -54,6 +54,13 @@ jobs:
rm -rf docs/$DOCS_DIRNAME
mkdir -p docs/$DOCS_DIRNAME
cp -r astarte-device-sdk-csharp/docs/out/html/* docs/$DOCS_DIRNAME/
- name: Update symlink
working-directory: ./docs/device-sdks/csharp
run: |
rm -f "latest"
latest_version=$(ls -d * | grep -v snapshot | sort -V | tail -n 1)
if [ -z $latest_version ]; then latest_version="snapshot"; fi
ln -sf "$latest_version" latest
- name: Commit files
working-directory: ./docs
run: |