Skip to content

Commit

Permalink
ci: single workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
kentbull committed Feb 28, 2024
1 parent b329496 commit 365b9c5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 57 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
---
name: Build Package

env:
GIT_SSH_KEY: ${{ secrets.GIT_SSH_KEY }}

on:
workflow_dispatch:
push:
Expand All @@ -18,20 +15,6 @@ jobs:
with:
fetch-depth: 0

# - name: Setup SSH Agent
# uses: webfactory/ssh-agent@v0.5.3
# with:
# ssh-private-key: ${{ secrets.GIT_SSH_KEY }}
#
# - name: Clone Required Repos
# run: git clone git@github.com:TetraVeda/kaslcred.git

- name: Resolve Version
run: |
IMAGE_VERSION=$(git describe --tags --abbrev=0)
echo "IMAGE_VERSION=$IMAGE_VERSION" >> $GITHUB_ENV
echo "building version $IMAGE_VERSION"
- name: Setup Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -65,4 +48,27 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: python-package
path: dist/*
path: dist/*

publish:
runs-on: ubuntu-latest
environment:
name: publish-approval
steps:
- name: Download pacakge artifacts
uses: actions/download-artifact@v3
with:
name: python-package

- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install twine
run: |
python -m pip install --upgrade pip
python -m pip install twine
- name: Publish
run: pipenv run twine upload dist/*
39 changes: 0 additions & 39 deletions .github/workflows/publish.yaml

This file was deleted.

0 comments on commit 365b9c5

Please sign in to comment.