13 Commits

Author SHA1 Message Date
3bb7219589 fix tar command?
All checks were successful
Deploy Quartz site to Pages / build (push) Successful in 23s
2026-04-11 03:05:36 -05:00
5c347ab685 use branches
Some checks failed
Deploy Quartz site to Pages / build (push) Failing after 22s
2026-04-11 03:03:47 -05:00
Build Pipeline
4dd82b1676 minor version increment [skip actions] 2026-04-11 07:57:35 +00:00
1869be9a19 upload tarball to releases instead
Some checks failed
Deploy Quartz site to Pages / build (push) Failing after 22s
2026-04-11 02:57:25 -05:00
Build Pipeline
7621ff8fb0 minor version increment [skip actions] 2026-04-11 07:51:03 +00:00
3820922535 buh?
Some checks failed
Deploy Quartz site to Pages / build (push) Failing after 21s
2026-04-11 02:50:42 -05:00
Build Pipeline
e37517047f minor version increment [skip actions] 2026-04-11 07:48:16 +00:00
ac7e1c6b66 already forgor
Some checks failed
Deploy Quartz site to Pages / build (push) Failing after 6s
2026-04-11 02:48:00 -05:00
Build Pipeline
f3c8747d30 minor version increment [skip actions] 2026-04-11 07:46:36 +00:00
816708741f change release naem
Some checks failed
Deploy Quartz site to Pages / build (push) Failing after 5s
2026-04-11 02:46:24 -05:00
e3370bded5 set the working directory 2026-04-11 02:45:23 -05:00
18529618ad update the tags
Some checks failed
Deploy Quartz site to Pages / build (push) Failing after 26s
2026-04-11 02:39:05 -05:00
577fa8b339 change tag naem 2026-04-11 02:38:24 -05:00
2 changed files with 13 additions and 10 deletions

View File

@@ -3,16 +3,15 @@ name: Deploy Quartz site to Pages
env: env:
VERSION_FRAGMENT: minor VERSION_FRAGMENT: minor
on: [push] on:
push:
branches:
- 'main'
permissions: permissions:
contents: read contents: read
id-token: write id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -41,7 +40,7 @@ jobs:
- name: Read Current Version - name: Read Current Version
run: echo "::set-env name=CURRENT_VERSION::$(cat version.txt)" run: echo "::set-env name=CURRENT_VERSION::$(cat version.txt)"
working-directory: content working-directory: content
- run: git add version.txt && git commit -m "${{ env.VERSION_FRAGMENT }} version increment [skip actions]" && git tag ${{ env.CURRENT_VERSION }} - run: git add version.txt && git commit -m "${{ env.VERSION_FRAGMENT }} version increment [skip actions]"
working-directory: content working-directory: content
- uses: actions/checkout@v6 - uses: actions/checkout@v6
id: clone quartz repo id: clone quartz repo
@@ -65,9 +64,13 @@ jobs:
- name: Build Quartz - name: Build Quartz
run: npx quartz build run: npx quartz build
working-directory: quartz working-directory: quartz
- run: tar czf www.tar.gz -C quartz public
- uses: akkuman/gitea-release-action@v1 - uses: akkuman/gitea-release-action@v1
working-directory: quartz
with: with:
tag_name: ${{env.CURRENT_VERSION}}
name: ${{env.CURRENT_VERSION}}
files: |- files: |-
public/** www.tar.gz
token: ${{secrets.CI_ACCESS}} token: ${{secrets.CI_ACCESS}}
- run: git push
working-directory: content

View File

@@ -1 +1 @@
0.0.1 1.3.0