Forgot to remove if condition for workflow: #4
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
name: Build | |
on: | |
push: | |
branches: | |
- 'main' | |
permissions: | |
contents: write | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get Latest Version | |
id: latest | |
uses: pozetroninc/github-action-get-latest-release@master | |
with: | |
repository: ${{ github.repository }} | |
- name: Calculate Next Version | |
id: calculate | |
if: "contains(steps.latest.outputs.release, '.')" | |
uses: ietf-tools/semver-action@v1 | |
with: | |
token: ${{ github.token }} | |
majorList: break,release | |
minorList: feature,new,add,update | |
patchAll: true | |
- name: Determine Next Version | |
id: version | |
uses: haya14busa/action-cond@v1 | |
with: | |
cond: contains(steps.latest.outputs.release, '.') | |
if_true: ${{ steps.calculate.outputs.next }} | |
if_false: v0.0.1 | |
- name: Update Version in Files | |
if: "contains(steps.latest.outputs.release, '.')" | |
uses: datamonsters/replace-action@v2 | |
with: | |
files: 'journal.go,web/app/package.json' | |
replacements: '${{ steps.latest.output.release }}=${{ steps.version.outputs.value }}' | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update version to ${{ steps.version.outputs.value }} | |
- name: Docker Login | |
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and Push Docker Image | |
run: | | |
docker build -t ghcr.io/jamiefdhurst/journal:latest . | |
docker tag ghcr.io/jamiefdhurst/journal:latest ghcr.io/jamiefdhurst/journal:${{ steps.version.outputs.value }} | |
docker push ghcr.io/jamiefdhurst/journal:latest | |
docker push ghcr.io/jamiefdhurst/journal:${{ steps.version.outputs.value }} | |
- name: Create Release | |
uses: ncipollo/[email protected] | |
with: | |
allowUpdates: true | |
draft: false | |
makeLatest: true | |
tag: ${{ steps.version.outputs.value }} | |
name: Release ${{ steps.version.outputs.value }} |