Skip to content

Commit

Permalink
Bump version to 0.0.26, added GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
e0c615c8e4d846ef817cd5063a88716c committed Feb 6, 2024
1 parent 5b3f6d3 commit 7950034
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 1 deletion.
Binary file removed .DS_Store
Binary file not shown.
19 changes: 19 additions & 0 deletions .github/workflows/publish-module.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish PowerShell Module

on:
push:
branches:
- master

jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2

- name: Publish to PowerShell Gallery
shell: pwsh
run: |
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
Publish-Module -Path '.' -NuGetApiKey ${{ secrets.PS_GALLERY_API_KEY }} -ErrorAction Stop
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
build/build.ps1
build/reset_github.sh
.vscode/settings.json
# **/.DS_Store
**/.env
# .DS_Store
2 changes: 1 addition & 1 deletion AWSSSOHelper.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'AWSSSOHelper.psm1'

# Version number of this module.
ModuleVersion = '0.0.28'
ModuleVersion = '0.0.26'

# Supported PSEditions
CompatiblePSEditions = @('Core','Desktop')
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change log for AWSSSOHelper

## [0.0.26] (shout out to @SiloReed)

### Changed

- Improvements to the token expiration logic

### Fixed

- Bug after cached credential expired
- Removed out-null from Get-SSOAccountList

## [0.0.25]

### Changed
Expand Down

0 comments on commit 7950034

Please sign in to comment.