Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump InsaneGenius.Utilities from 3.0.14 to 3.0.15 #170

Merged
merged 6 commits into from
Jun 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/BuildDockerPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

# TODO: How to use env.foo in matrix?
env:
MainBranch: ${{ endsWith(github.ref, 'refs/heads/main') }}

jobs:

# Test
Expand Down Expand Up @@ -144,6 +140,8 @@ jobs:
# Login to Docker Hub
# https://github.com/marketplace/actions/docker-login
- name: Login to Docker Hub
# No need to login if not pushing
if: ${{ (github.event_name != 'pull_request') }}
uses: docker/login-action@v2
with:
registry: docker.io
Expand All @@ -163,6 +161,7 @@ jobs:
cache-from: type=gha,scope=${{ matrix.cache-scope }}
cache-to: type=gha,mode=max,scope=${{ matrix.cache-scope }}
file: ${{ matrix.file }}
# Don't push pull requests
push: ${{ (github.event_name != 'pull_request') }}
# TODO: How to test for secret not null and avoid "null= is not a valid secret"
secrets: ${{ matrix.secrets }}=${{ secrets[matrix.secrets] }}
Expand All @@ -183,7 +182,8 @@ jobs:
name: Tool versions
runs-on: ubuntu-latest
needs: buildpush

if: ${{ (github.event_name != 'pull_request') }}

strategy:

# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
Expand Down Expand Up @@ -234,6 +234,7 @@ jobs:
name: Create README.md
runs-on: ubuntu-latest
needs: toolversions
if: ${{ (github.event_name != 'pull_request') }}

steps:

Expand Down Expand Up @@ -266,6 +267,7 @@ jobs:
name: Update README.md
runs-on: ubuntu-latest
needs: updatereadme
if: ${{ (github.event_name != 'pull_request') }}

steps:

Expand All @@ -290,6 +292,7 @@ jobs:
name: Date badge
runs-on: ubuntu-latest
needs: buildpush
if: ${{ (github.event_name != 'pull_request') }}

steps:

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/BuildGitHubRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ jobs:

# https://github.com/marketplace/actions/upload-a-build-artifact
- name: Upload build artifacts
# No need to publish if artifacts if not publishing build
if: ${{ (github.event_name != 'pull_request') }}
uses: actions/upload-artifact@v3
with:
name: publish
Expand All @@ -129,6 +131,7 @@ jobs:
name: Publish
runs-on: ubuntu-latest
needs: [ build, version ]
if: ${{ (github.event_name != 'pull_request') }}

steps:

Expand All @@ -146,8 +149,6 @@ jobs:
# Create GitHub release
# https://github.com/marketplace/actions/automatic-releases
- name: Create GitHub release
# Do not push on pull requests
if: ${{ (github.event_name != 'pull_request') }}
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion PlexCleaner/PlexCleaner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="InsaneGenius.Utilities" Version="3.0.14" />
<PackageReference Include="InsaneGenius.Utilities" Version="3.0.15" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.15" />
Expand Down