Delete test.yaml
This commit is contained in:
parent
85e1b65a8f
commit
f792aa2cb0
1 changed files with 0 additions and 33 deletions
33
.github/workflows/test.yaml
vendored
33
.github/workflows/test.yaml
vendored
|
@ -1,33 +0,0 @@
|
|||
name: Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
-
|
||||
name: Build the Docker image
|
||||
run: docker build . --file Dockerfile --tag kroese/virtual-dsm:latest --tag kroese/virtual-dsm:${{ secrets.MAJOR }}.${{ secrets.MINOR }}
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Push to DockerHub
|
||||
run: docker push kroese/virtual-dsm:${{ secrets.MAJOR }}.${{ secrets.MINOR }} && docker push kroese/virtual-dsm:latest
|
||||
-
|
||||
name: Update Minor version
|
||||
uses: hmanzur/actions-set-secret@v2.0.0
|
||||
with:
|
||||
name: 'MINOR'
|
||||
value: $((${{ secrets.MINOR }}+1))
|
||||
repository: kroese/virtual-dsm
|
||||
token: ${{ secrets.REPO_ACCESS_TOKEN }}
|
Loading…
Reference in a new issue