mirror of
https://github.com/nicoburns/blessed-rs
synced 2024-11-10 14:24:30 +00:00
Change artifact download directory
This commit is contained in:
parent
9b0e0f07a4
commit
ab95a23e4e
2 changed files with 4 additions and 2 deletions
4
.github/workflows/github-actions.yml
vendored
4
.github/workflows/github-actions.yml
vendored
|
@ -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:
|
||||
|
|
|
@ -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"]
|
Loading…
Reference in a new issue