Skip to content

Commit

Permalink
[update]
Browse files Browse the repository at this point in the history
  • Loading branch information
boke0 committed Mar 8, 2021
1 parent 0e8cd13 commit 03e8444
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: dist
path: dist/*.tar.gz
path: dist/*.whl
deploy-pypi:
needs: build
runs-on: ubuntu-latest
Expand All @@ -49,7 +49,7 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
twine upload mitama-*.tar.gz
twine upload mitama-*
deploy-docker:
needs: build
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.13
RUN mkdir /pkg
COPY mitama-*.tar.gz /pkg/
COPY mitama-*.whl /pkg/
WORKDIR /pkg
RUN apk add --no-cache python3 python3-dev py3-pip libmagic nginx build-base gcc libffi-dev openssl-dev rust cargo zlib-dev jpeg-dev nginx postfix git \
&& pip3 install --upgrade pip \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.mysql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.13
RUN mkdir /pkg
COPY mitama-*.tar.gz /pkg/
COPY mitama-*.whl /pkg/
WORKDIR /pkg
RUN apk add --no-cache python3 python3-dev py3-pip libmagic nginx build-base gcc libffi-dev openssl-dev rust cargo zlib-dev jpeg-dev nginx postfix mariadb-dev mariadb-connector-c-dev git \
&& pip3 install --upgrade pip \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.postgresql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.13
RUN mkdir /pkg
COPY mitama-*.tar.gz /pkg/
COPY mitama-*.whl /pkg/
WORKDIR /pkg
RUN apk add --no-cache python3 python3-dev py3-pip libmagic nginx build-base gcc libffi-dev openssl-dev rust cargo zlib-dev jpeg-dev nginx postfix postgresql-dev postgresql-libs \
&& pip3 install --upgrade pip \
Expand Down

0 comments on commit 03e8444

Please sign in to comment.