Skip to content

Commit

Permalink
Update container build action.
Browse files Browse the repository at this point in the history
  • Loading branch information
mareuter committed Mar 14, 2024
1 parent a1c797e commit 7992883
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Build package with deps
run: |
python -m pip install --upgrade pip
pip wheel --wheel-dir wheel --editable .
- name: Docker meta
id: meta
Expand Down Expand Up @@ -64,7 +76,7 @@ jobs:
needs: docker
steps:
- name: Deploy to Render
uses: johnbeynon/render-webhook-action
uses: johnbeynon/render-webhook-action@v0.0.6
with:
service-id: ${{ secrets.RENDER_SERVICE_ID }}
key: ${{ secrets.RENDER_SERVICE_KEY }}

0 comments on commit 7992883

Please sign in to comment.