(MINOR) Merge pull request #59 from jamiefdhurst/feature/static-site #5
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 | |
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: | |
version_format: "${major}.${minor}.${patch}" | |
- 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: 'blog/config.py' | |
replacements: "${{ steps.latest_clean.outputs.name }}=${{ steps.version.outputs.value }}" | |
- name: File Save Delay | |
uses: jakejarvis/wait-action@master | |
with: | |
time: '2s' | |
- name: Commit Version Changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "[skip ci] Update version to v${{ steps.version.outputs.value }}" | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Install Dependencies | |
run: | | |
python -m pip install setuptools | |
python setup.py develop | |
- name: Generate Distribution | |
run: | | |
python -m blog.generate | |
cd dist | |
zip ../dist.zip * | |
# - 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/blog:latest . | |
# docker tag ghcr.io/jamiefdhurst/blog:latest ghcr.io/jamiefdhurst/blog:v${{ steps.version.outputs.value }} | |
# docker push ghcr.io/jamiefdhurst/blog:latest | |
# docker push ghcr.io/jamiefdhurst/blog:v${{ steps.version.outputs.value }} | |
- name: Create Release | |
uses: ncipollo/[email protected] | |
with: | |
allowUpdates: true | |
artifacts: dist.zip | |
draft: false | |
makeLatest: true | |
tag: v${{ steps.version.outputs.value }} | |
name: v${{ steps.version.outputs.value }} |