Skip to content

Commit

Permalink
ci: fix deployment workflow (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArwynFr authored May 31, 2023
1 parent 5d91b38 commit e92fa95
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,19 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and publish docker image
- name: Build Docker image
run: >
docker build --push
docker build
--file build/Dockerfile
--tag ghcr.io/team-gsri/apps-admin-client:${{ steps.next-version.outputs.next-version }}
dist/gsri-admin
- name: Publish Docker image
run: docker push ghcr.io/team-gsri/apps-admin-client:${{ steps.next-version.outputs.next-version }}

- name: Publish GitHub release
uses: arwynfr/actions-conventional-versioning@v2
uses: arwynfr/actions-conventional-versioning@v3
with:
allow-additional-modifiers: true
feat-upgrades-minor: false
strict-types: true

0 comments on commit e92fa95

Please sign in to comment.