diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index a855ee9..4072e37 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -29,7 +29,9 @@ jobs: uses: actions/download-artifact@v3 with: name: blessed-rs-release-binary - path: target/release/blessed-rs + path: target/release + - name: List Files + run: find . - name: Deploy to Heroku uses: akhileshns/heroku-deploy@v3.12.12 with: diff --git a/Dockerfile b/Dockerfile index e059a08..1487a02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ FROM debian:buster-slim COPY target/release/blessed-rs /usr/local/bin/blessed-rs +RUN chmod +x /usr/local/bin/blessed-rs WORKDIR /usr/blessed-rs COPY ./static ./static COPY ./templates ./templates COPY ./data ./data -RUN chmod +x /usr/local/bin/blessed-rs CMD ["blessed-rs"] \ No newline at end of file