Compare commits
22 Commits
fdasafsdsf
...
v.1.1.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4f475d321f | ||
|
|
0c8c412fd1 | ||
|
|
0d9d2a027a | ||
|
|
2e140e324e | ||
|
|
3ebfef8dc5 | ||
|
|
6c67b29c40 | ||
|
|
356a4ac697 | ||
|
|
5434b86105 | ||
|
|
6b996bfd79 | ||
|
|
b6bb63d66b | ||
|
|
daffa92985 | ||
| d75fa31455 | |||
| e1478a159d | |||
| b4e54c11c1 | |||
| b61d7fe07e | |||
| 13c5a002d6 | |||
| 980c37f201 | |||
| dde9f59a21 | |||
| 4905840b61 | |||
| 0367629b0d | |||
| 27a13700e6 | |||
| 636b9941bd |
20
.gitea/workflows/checkout_fedora-image.yml
Normal file
20
.gitea/workflows/checkout_fedora-image.yml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
name: checkout_fedora-image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ devel ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
checkout:
|
||||||
|
runs-on: fedora-cloud-42
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
container:
|
||||||
|
image: git.phyllo.me/devops/fedora-runner-image:latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: https://git.phyllo.me/devops/checkout@v5
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
20
.gitea/workflows/checkout_ubuntu-image.yml
Normal file
20
.gitea/workflows/checkout_ubuntu-image.yml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
name: checkout_ubuntu-image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ devel ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
checkout:
|
||||||
|
runs-on: fedora-cloud-42
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
container:
|
||||||
|
image: docker.gitea.com/runner-images:ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: https://git.phyllo.me/devops/checkout@v5
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
name: release
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
checkout:
|
|
||||||
runs-on: fedora-cloud-42
|
|
||||||
container: git.phyllo.me/roots/fedora-iso-creation:42
|
|
||||||
steps:
|
|
||||||
- uses: https://git.phyllo.me/actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
33
.gitea/workflows/release_fedora-image.yml
Normal file
33
.gitea/workflows/release_fedora-image.yml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
name: make-a-release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "v*.*.*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
runs-on: fedora-cloud-42
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: bash
|
||||||
|
container:
|
||||||
|
image: git.phyllo.me/devops/fedora-runner-image:latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: https://git.phyllo.me/devops/checkout@v5
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: echo ${{ github.sha }} > Release.txt
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: cat Release.txt
|
||||||
|
|
||||||
|
- name: Release
|
||||||
|
uses: https://git.phyllo.me/devops/action-gh-release@v2
|
||||||
|
if: github.ref_type == 'tag'
|
||||||
|
with:
|
||||||
|
files: Release.txt
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
name: release
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
runs-on: ubuntu-latest:docker://docker.gitea.com/runner-images:ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: https://git.phyllo.me/actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- uses: https://git.phyllo.me/actions/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
files: |-
|
|
||||||
bin/**
|
|
||||||
api_key: '${{secrets.RELEASE_TOKEN}}'
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user