diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4e80269..02d31b6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -4,8 +4,6 @@ on: create: tags: - "v*" - branches: - - main env: CARGO_TERM_COLOR: always @@ -31,7 +29,7 @@ jobs: uses: docker/metadata-action@v4 with: images: | - dopolytech2021/lambdo + faastrt/lambdo tags: | type=ref,event=tag type=semver,pattern={{version}} @@ -57,7 +55,7 @@ jobs: with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - repository: dopolytech2021/lambdo + repository: faastrt/lambdo short-description: A Serverless runtime in Rust create-github-release: runs-on: ubuntu-latest diff --git a/README.md b/README.md index de6176d..a5e8698 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ $ docker run -it --privileged -p 3000:3000 \ -v /path/to/config:/etc/lambdo/config.yaml \ -v /path/to/initramfs:/var/lib/lambdo/initramfs \ -v /path/to/kernel:/var/lib/lambdo/kernel/vmlinux.bin \ - dopolytech2021/lambdo + faastrt/lambdo ``` If you want to run `lambdo` for a test, you can use the `docker-compose` file that will use the `examples/node` folder as configuration folder. diff --git a/api/Cargo.toml b/api/Cargo.toml index 66b2c2d..927352d 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -16,7 +16,7 @@ anyhow = "1.0.62" clap = { version="4.1.6", features=["derive"] } serde_yaml = "0.9" env_logger = "0.10.0" -lumper = { git = "https://github.com/do4-2022/lumper.git", rev = "5305a5d970ddcd331f5e6a82e2db313bbb7a6a33" } +lumper = { git = "https://github.com/faast-rt/lumper.git", rev = "81366eb" } [dependencies.uuid] version = "1.3.0"