Skip to content

Commit

Permalink
Adding checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
evozniak committed Oct 2, 2023
1 parent 01681cf commit b4cc192
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 37 deletions.
36 changes: 0 additions & 36 deletions .github/actions/bump-version/action.yaml

This file was deleted.

17 changes: 16 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ on:

pull_request:
branches: [pics]
paths-ignore:
- "docs/**"
- "VERSION"
- ".bumpversion.cfg"
- "**.md"
- "catalog-info.yaml"
- "mkdocs.yml"
- "philips-repo.yaml"

workflow_dispatch:

jobs:
Expand Down Expand Up @@ -85,9 +94,12 @@ jobs:

Bump-version:
runs-on: ubuntu-22.04
name: Publish to docker repository
name: Bumping the version
needs: [Build]
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -116,6 +128,9 @@ jobs:
name: Publish to docker repository
needs: [Bump-version]
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Docker login
run: |
docker login --username '${{ secrets.DOCKER_USER }}' --password '${{ secrets.DOCKER_PSWD }}' '${{ secrets.DOCKER_REPO }}'
Expand Down

0 comments on commit b4cc192

Please sign in to comment.