-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from StartAutomating/EZOut-Updates
Ez out updates
- Loading branch information
Showing
17 changed files
with
308 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
name: OnIssueChanged | ||
on: | ||
issues: | ||
workflow_dispatch: | ||
jobs: | ||
RunGitPub: | ||
runs-on: ubuntu-latest | ||
if: ${{ success() }} | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v2 | ||
- name: Use GitPub Action | ||
uses: StartAutomating/GitPub@main | ||
id: GitPub | ||
with: | ||
TargetBranch: edits-$([DateTime]::Now.ToString("r").Replace(":","-").Replace(" ", "")) | ||
CommitMessage: Posting with GitPub [skip ci] | ||
PublishParameters: | | ||
{ | ||
"Get-GitPubIssue": { | ||
"Repository": '${{github.repository}}' | ||
}, | ||
"Get-GitPubRelease": { | ||
"Repository": '${{github.repository}}' | ||
}, | ||
"Publish-GitPubJekyll": { | ||
"OutputPath": "docs/_posts" | ||
} | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#requires -Module PSSVG | ||
|
||
$psChevronPolygonPoints = @( | ||
"40,20" | ||
"45,20" | ||
"60,50" | ||
"35,80" | ||
"32.5,80" | ||
"55,50" | ||
) -join ' ' | ||
|
||
$psChevronPolygon = | ||
=<svg.polygon> -Points $psChevronPolygonPoints | ||
|
||
$psChevron = | ||
=<svg.symbol> -Id psChevron -Content @( | ||
$psChevronPolygon | ||
) -ViewBox 100, 100 -PreserveAspectRatio $false | ||
|
||
|
||
|
||
$assetsPath = Join-Path $psScriptRoot Assets | ||
|
||
|
||
=<svg> @( | ||
$psChevron | ||
=<svg.use> -href '#psChevron' -X '63%' -Y '-2%' -Width '9.5%' -Stroke '#4488ff' -Fill '#4488ff' -Opacity .8 | ||
=<svg.text> @( | ||
=<svg.tspan> "EZ" -FontFamily 'sans-serif' | ||
=<svg.tspan> "OUT" -FontFamily 'sans-serif' -Dx '-0.3em' -Rotate 1 -Dy '0.0em' -FontSize 24 -Opacity .9 | ||
) -FontSize 36 -Fill '#4488ff' -X 50% -DominantBaseline 'middle' -TextAnchor 'middle' -Y 50% | ||
) -ViewBox 300, 100 -OutputPath (Join-Path $assetsPath EZOut.svg) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.