From 4340026d547492c6de5ced8cc55287b3d332584f Mon Sep 17 00:00:00 2001 From: Erin Grasmick Date: Tue, 21 Jul 2020 16:32:36 +0200 Subject: [PATCH 1/2] change working directory --- .github/workflows/backend.yml | 1 + .github/workflows/frontend.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index f6923f1..71d8d39 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -24,6 +24,7 @@ jobs: run: cargo run --release -- --help - name: Build and Push template image + working-directory: ./backend uses: docker/build-push-action@v1 # https://github.com/docker/build-push-action with: username: ${{ secrets.DOCKER_USERNAME }} diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 052b67b..4b707c7 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -38,6 +38,7 @@ jobs: run: yarn build - name: Build and Push template image + working-directory: ./frontend uses: docker/build-push-action@v1 # https://github.com/docker/build-push-action with: username: ${{ secrets.DOCKER_USERNAME }} From b65e34cda4c047da08809c86806b6bbc3fce60af Mon Sep 17 00:00:00 2001 From: Erin Grasmick Date: Mon, 27 Jul 2020 18:37:15 +0200 Subject: [PATCH 2/2] remove wasm curl --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7ea5fcd..48bd5ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,7 +26,6 @@ before_install: before_script: - if [ $TRAVIS_RUST_VERSION = $CLIPPY_TOOLCHAIN ]; then rustup component add clippy-preview --toolchain=$CLIPPY_TOOLCHAIN; fi - - curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f script: - cd frontend