forked from abrasive/shairport
-
-
Notifications
You must be signed in to change notification settings - Fork 579
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 #1961 from charlesomer/development
Upgrade docker images and GitHub action versions. Pin to ubuntu-22.04.
- Loading branch information
Showing
4 changed files
with
39 additions
and
37 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
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 |
---|---|---|
@@ -1,27 +1,27 @@ | ||
# Builds & pushes a docker image when a tag is created. | ||
# Builds & pushes a docker image when a tag is created. | ||
# Tag pattern: '[tag]' & '[tag]-classic' | ||
# 'latest' & 'classic' also, when master tagged. | ||
|
||
# Only pushes the tag when it matches one of the following patterns: | ||
# X, X.Y or X.Y.Z | ||
# X, X.Y or X.Y.Z | ||
|
||
name: Build and push docker (tag) | ||
|
||
on: | ||
workflow_dispatch: | ||
# push: | ||
# tags: | ||
# - '[0-9]+' # X | ||
# - '[0-9]+\.[0-9]+' # X.Y | ||
# - '[0-9]+\.[0-9]+\.[0-9]+' # X.Y.Z | ||
push: | ||
tags: | ||
- '[0-9]+' # X | ||
- '[0-9]+\.[0-9]+' # X.Y | ||
- '[0-9]+\.[0-9]+\.[0-9]+' # X.Y.Z | ||
|
||
env: | ||
DOCKER_PLATFORMS: linux/386,linux/amd64,linux/arm/v6,linux/arm64,linux/arm/v7 | ||
NQPTP_BRANCH: main | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
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