Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jwindhager committed Jan 28, 2024
1 parent a36abe9 commit 6900f99
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 61 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: build-and-publish
on:
push:
tags:
- v*
jobs:
build-and-publish:
name: Build and publish
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/tagbiljett
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: python3 -m pip install --user build
- name: Build Python package
run: python3 -m build
- name: Publish Python package
uses: pypa/gh-action-pypi-publish@release/v1
61 changes: 0 additions & 61 deletions .github/workflows/build-publish-release.yml

This file was deleted.

0 comments on commit 6900f99

Please sign in to comment.