No force admins #9
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: | |
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.PAT }} | |
- name: Get Latest Version | |
id: latest | |
uses: gregziegan/[email protected] | |
- name: Calculate Next Version | |
id: calculate | |
uses: paulhatch/[email protected] | |
with: | |
major_pattern: "/^(break,release)/" | |
minor_pattern: "/^(feature,new,add,update)/" | |
version_format: "${major}.${minor}.${patch}" | |
# - 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 | |
if: ${{ contains(steps.latest.outputs.name, '.') }} | |
id: version | |
uses: haya14busa/action-cond@v1 | |
with: | |
cond: ${{ contains(steps.latest.outputs.name, '.') }} | |
if_true: ${{ steps.calculate.outputs.version }} | |
if_false: '0.0.1' | |
- name: Remove Leading "v" from Latest Version | |
if: ${{ contains(steps.latest.outputs.name, '.') }} | |
id: latest_clean | |
run: | | |
export version=$(echo ${{ steps.latest.outputs.name }} | sed 's/^v//') | |
echo ::set-output name=name::$version | |
- name: Update Version in Files | |
if: ${{ contains(steps.latest.outputs.name, '.') }} | |
uses: datamonsters/replace-action@v2 | |
with: | |
files: 'journal.go,web/app/package.json' | |
replacements: '${{ steps.latest_clean.outputs.name }}=${{ steps.version.outputs.value }}' | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "[skip ci] Update version to v${{ steps.version.outputs.value }}" | |
- name: Docker Login | |
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.PAT }} | |
- 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:v${{ steps.version.outputs.value }} | |
docker push ghcr.io/jamiefdhurst/journal:latest | |
docker push ghcr.io/jamiefdhurst/journal:v${{ steps.version.outputs.value }} | |
- name: Create Release | |
uses: ncipollo/[email protected] | |
with: | |
allowUpdates: true | |
draft: false | |
makeLatest: true | |
tag: v${{ steps.version.outputs.value }} | |
name: Release v${{ steps.version.outputs.value }} |