Skip to content
This repository has been archived by the owner on Jul 9, 2023. It is now read-only.

🐛 Fix GitHub Actions and latest requirements #25

Merged
merged 3 commits into from
Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ on:

jobs:
deploy:
strategy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Deploy Image
- name: Build and Deploy Image
run: bash scripts/build-push.sh
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ on:

jobs:
test:
strategy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Deploy Image
- name: Build Image
run: bash scripts/build.sh
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker:latest

RUN apk add --no-cache py3-pip python3-dev libffi-dev openssl-dev curl gcc libc-dev make && \
RUN apk add --no-cache py3-pip python3-dev libffi-dev openssl-dev curl gcc libc-dev rust cargo make && \
pip3 install docker-compose