Skip to content

Commit

Permalink
Allow self-release in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Wh1isper committed Dec 21, 2023
1 parent e529a40 commit 0480258
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,17 @@ jobs:

steps:
- uses: actions/checkout@v3

# Self versioning
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build twine hatch
- name: Versioning package
run: hatch version ${{ github.ref_name }}
# Build docker images
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down

0 comments on commit 0480258

Please sign in to comment.