Skip to content

Commit

Permalink
test(docker): set versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Morian Engelhardt committed Oct 22, 2023
1 parent 1c3cd8a commit 425a257
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,29 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Bumping version
uses: jpb06/bump-package@latest
with:
major-keywords: BREAKING CHANGE
minor-keywords: feat,minor
patch-keywords: fix,qol,refactor,perf,docs,style,ci,chore,test

- uses: actions/checkout@v3

- name: get-npm-version
id: package-version
uses: martinbeentjes/[email protected]

- uses: actions/setup-node@v3
with:
node-version: 18

- name: Build and push the Docker image
uses: mr-smithers-excellent/docker-build-push@v5
with:
image: xp-dashboard
tags: latest
tags: v${{ steps.package-version.outputs.current-version}}, latest
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 425a257

Please sign in to comment.