Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix build #804

Merged
merged 1 commit into from
Feb 5, 2024
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
1 change: 1 addition & 0 deletions .github/workflows/build-reverse-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- name: prepare
run: |-
apk add --no-cache python3 py3-pip
find /usr/lib/ -type f -name 'EXTERNALLY-MANAGED' -delete
pip3 install --upgrade pip
pip3 install awscli
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-run-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- name: prepare
run: |-
apk add --no-cache python3 py3-pip
find /usr/lib/ -type f -name 'EXTERNALLY-MANAGED' -delete
pip3 install --upgrade pip
pip3 install awscli
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ jobs:
BARCELONA_ENDPOINT: https://barcelona.degica.com
DOCKER_REPOSITORY: public.ecr.aws/degica/barcelona
DOCKER_BUILDKIT: '1'
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: workaround
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: prepare
run: |-
apk update
apk add --no-cache python3 py3-pip
pip3 install --upgrade pip
find /usr/lib/ -type f -name 'EXTERNALLY-MANAGED' -delete
pip3 install awscli
- uses: actions/checkout@v3
- name: setup
Expand Down
Loading