Skip to content

Commit

Permalink
Merge pull request #28 from Heliozoa/debian
Browse files Browse the repository at this point in the history
Made wildcard tags more specific
  • Loading branch information
Heliozoa authored Feb 1, 2023
2 parents 5e5e1c0 + 79fd6bd commit b0f6b3b
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/upload-csharp-dotnet6-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy csharp-dotnet6
on:
push:
tags:
- "all-*"
- "csharp-dotnet6-*"
- "all-[0-9]+.[0-9]+"
- "csharp-dotnet6-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-csharp-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy csharp
on:
push:
tags:
- "all-*"
- "csharp-*"
- "all-[0-9]+.[0-9]+"
- "csharp-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-cyber-security-base-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy cyber-security-base
on:
push:
tags:
- "all-*"
- "cyber-security-base-*"
- "all-[0-9]+.[0-9]+"
- "cyber-security-base-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-java-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy Java
on:
push:
tags:
- "all-*"
- "java-*"
- "all-[0-9]+.[0-9]+"
- "java-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-make-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy Make
on:
push:
tags:
- "all-*"
- "make-*"
- "all-[0-9]+.[0-9]+"
- "make-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-python-alp-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy Python for ALP
on:
push:
tags:
- "all-*"
- "python-alp-*"
- "all-[0-9]+.[0-9]+"
- "python-alp-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-python-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy Python
on:
push:
tags:
- "all-*"
- "python-*"
- "all-[0-9]+.[0-9]+"
- "python-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-r-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy R
on:
push:
tags:
- "all-*"
- "r-*"
- "all-[0-9]+.[0-9]+"
- "r-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-tmc-langs-rust-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Deploy tmc-langs-rust
on:
push:
tags:
- "all-*"
- "rust-*"
- "all-[0-9]+.[0-9]+"
- "rust-[0-9]+.[0-9]+"

env:
TAG: ${{ github.ref_name }}
Expand Down

0 comments on commit b0f6b3b

Please sign in to comment.