Change artifact download directory

This commit is contained in:
Nico Burns 2022-04-18 18:37:14 +01:00
parent 9b0e0f07a4
commit ab95a23e4e
2 changed files with 4 additions and 2 deletions

View file

@ -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:

View file

@ -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"]