Skip to content

Commit c36d8af

Browse files
committed
initial minor cleanup/rewrite of aws-mfa
1 parent 7c54b15 commit c36d8af

File tree

11 files changed

+1195
-451
lines changed

11 files changed

+1195
-451
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Python package build and publish
3+
on:
4+
push:
5+
tags:
6+
- "*.*.*"
7+
jobs:
8+
build_and_publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Build and publish to pypi
14+
uses: JRubics/poetry-publish@v2.0
15+
with:
16+
python_version: "3.12.0"
17+
pypi_token: ${{ secrets.DEPLOY_FROM_GITHUB_AWTH }}
18+
19+
- name: Create a Release on GitHub
20+
uses: softprops/action-gh-release@v2
21+
if: startsWith(github.ref, 'refs/tags/')
22+
with:
23+
generate_release_notes: true

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Brian Nuszkowski
3+
Copyright (c) 2016 Brian Nuszkowski, 2025 Jesse Hitch
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)