tryin more shit
This commit is contained in:
parent
a14a27589d
commit
312479e0dd
@ -3,10 +3,10 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Build-And-Push-Container:
|
Lint-Python:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
# - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
|
- run: Dumping env ${{ gitea.env }}"
|
||||||
# - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
# - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
||||||
# - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
# - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
@ -18,9 +18,22 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
uv pip install black --system --quiet
|
uv pip install black --system --quiet
|
||||||
black app --check --fast
|
black app --check --fast
|
||||||
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
Build-and-Push-Docker:
|
||||||
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
- name: Login to Docker Hub
|
||||||
- name: List files in the repository
|
if: github.event_name != 'pull_request'
|
||||||
run: |
|
uses: docker/login-action@v3
|
||||||
ls ${{ gitea.workspace }}
|
with:
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_TOKEN }}
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: false
|
||||||
|
tags: dragon-bot/dale-bot:latest
|
||||||
|
# - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
|
||||||
|
# - run: echo "🖥️ The workflow is now ready to test your code on the runner."
|
||||||
|
# - name: List files in the repository
|
||||||
|
# run: |
|
||||||
|
# ls ${{ gitea.workspace }}
|
||||||
|
# - run: echo "🍏 This job's status is ${{ job.status }}."
|
@ -2,7 +2,6 @@ FROM python:3.10-rc as build
|
|||||||
ADD app/requirements.txt /requirements.txt
|
ADD app/requirements.txt /requirements.txt
|
||||||
ADD --chmod=755 https://astral.sh/uv/install.sh /install.sh
|
ADD --chmod=755 https://astral.sh/uv/install.sh /install.sh
|
||||||
RUN /install.sh && rm /install.sh
|
RUN /install.sh && rm /install.sh
|
||||||
# RUN pip install --disable-pip-version-check --verbose -r requirements.txt
|
|
||||||
RUN /root/.cargo/bin/uv pip install --system --verbose -r requirements.txt
|
RUN /root/.cargo/bin/uv pip install --system --verbose -r requirements.txt
|
||||||
|
|
||||||
FROM python:3.10-rc-slim
|
FROM python:3.10-rc-slim
|
||||||
|
Loading…
x
Reference in New Issue
Block a user