forked from buanet/ioBroker.docker
-
Notifications
You must be signed in to change notification settings - Fork 0
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 buanet#234 from buanet/dev
Dev
- Loading branch information
Showing
12 changed files
with
90 additions
and
73 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 |
---|---|---|
@@ -1 +1 @@ | ||
v6.0.0-beta | ||
v6.1.0-beta.1 |
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,15 +1,15 @@ | ||
# Github action to build Docker image from beta branch (tag: beta) | ||
name: Build debian based image (beta-node16) | ||
name: Build debian image (beta-node16) | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- beta | ||
types: | ||
- closed | ||
schedule: | ||
- cron: '42 3 * * 1' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
bulid-beta-node16-image: | ||
|
@@ -53,13 +53,13 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_PASS }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.PACKAGES_USER }} | ||
|
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,5 +1,5 @@ | ||
# Github action to build Docker image from beta branch (tag: beta) | ||
name: Build debian based image (beta) | ||
name: Build debian image (beta) | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -53,13 +53,13 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_PASS }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.PACKAGES_USER }} | ||
|
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,5 +1,5 @@ | ||
# Github action to build Docker image from dev branch (tag: dev) | ||
name: Build debian based image (dev-node16) | ||
name: Build debian image (dev-node16) | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -49,13 +49,13 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_PASS }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.PACKAGES_USER }} | ||
|
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,5 +1,5 @@ | ||
# Github action to build Docker image from dev branch (tag: dev) | ||
name: Build debian based image (dev) | ||
name: Build debian image (dev) | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -49,13 +49,13 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_PASS }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.PACKAGES_USER }} | ||
|
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,5 +1,5 @@ | ||
# Github action to build Docker image from main branch (tag: latest) | ||
name: Build debian based image (latest) | ||
name: Build debian image (latest) | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -51,13 +51,13 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: Login to DockerHub (buanet) | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_PASS }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.PACKAGES_USER }} | ||
|
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,5 +1,5 @@ | ||
# Github action to build Docker image from main branch for iobroker/iobroker (tag: latest) | ||
name: Build debian based image (latest) | ||
name: Build debian image (latest) | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -51,7 +51,7 @@ jobs: | |
uses: docker/[email protected] | ||
|
||
- name: Login to DockerHub (iobroker) | ||
uses: docker/login-action@v1.10.0 | ||
uses: docker/login-action@v1.12.0 | ||
with: | ||
username: ${{ secrets.DOCKER_USER_IOB }} | ||
password: ${{ secrets.DOCKER_PASS_IOB }} | ||
|
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
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
Oops, something went wrong.