From a99c5d542cd301f7aec55d04ae2c2eba7dc5feb8 Mon Sep 17 00:00:00 2001 From: Romain Gallet Date: Fri, 19 Jun 2020 11:19:31 +0100 Subject: [PATCH] Assets path fix (#21) --- .github/workflows/release.yml | 2 +- docker-compose.yml | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ad95d5a..5faeee06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,6 +61,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: '${{ github.event.release.upload_url }}' - asset_path: ./bin/authenticator-rust + asset_path: ./bin/authenticator-rs asset_name: 'authenticator-rs-${{ github.event.release.tag_name }}-x86_64' asset_content_type: application/octet-stream diff --git a/docker-compose.yml b/docker-compose.yml index 79bd649a..c9b22347 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,7 @@ -version: '2' +version: '3' services: - hello_world: + rust: image: ubuntu - command: [/bin/echo, 'Hello world \ No newline at end of file + command: [/bin/sleep, '60000'] + volumes: + - '.:/authenticator-rs' \ No newline at end of file