You've already forked ugly-queue
Compare commits
4 Commits
v1.0.18
...
f8be2fc67f
| Author | SHA1 | Date | |
|---|---|---|---|
| f8be2fc67f | |||
| d1e3b2124f | |||
| ad401888f8 | |||
| 80219635ad |
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@@ -2,7 +2,7 @@ name: CI
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- "**"
|
- "master"
|
||||||
tags:
|
tags:
|
||||||
- "!**"
|
- "!**"
|
||||||
|
|
||||||
@@ -11,11 +11,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Create Release Archive
|
- name: Create Release
|
||||||
id: semrelease
|
id: semrelease
|
||||||
uses: go-semantic-release/action@v1
|
uses: go-semantic-release/action@v1
|
||||||
with:
|
with:
|
||||||
# custom-arguments: --provider=gitea
|
|
||||||
hooks: exec
|
hooks: exec
|
||||||
env:
|
env:
|
||||||
GITEA_TOKEN: ${{ secrets.G_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.G_TOKEN }}
|
||||||
|
|||||||
5
.github/workflows/dist.yml
vendored
5
.github/workflows/dist.yml
vendored
@@ -12,16 +12,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4 # Checkout Sourcecode
|
- uses: actions/checkout@v4 # Checkout Sourcecode
|
||||||
- uses: https://hub.cybercinch.nz/cybercinch/composer-build-action@v1
|
- uses: https://hub.cybercinch.nz/cybercinch/composer-build-action@v1
|
||||||
- run: |
|
|
||||||
ls -lah
|
|
||||||
ls -lah build/
|
|
||||||
- uses: https://hub.cybercinch.nz/guisea/gitea-composer-upload-action@master
|
- uses: https://hub.cybercinch.nz/guisea/gitea-composer-upload-action@master
|
||||||
with:
|
with:
|
||||||
baseurl: "${{ secrets.G_SERVER_URL}}"
|
baseurl: "${{ secrets.G_SERVER_URL}}"
|
||||||
access_token: "${{ secrets.G_TOKEN }}"
|
access_token: "${{ secrets.G_TOKEN }}"
|
||||||
username: "${{ secrets.G_USERNAME }}"
|
username: "${{ secrets.G_USERNAME }}"
|
||||||
owner: "cybercinch" # Override owner name for repository (Optional) Only if different from username
|
owner: "cybercinch" # Override owner name for repository (Optional) Only if different from username
|
||||||
repo_name: ugly-queue
|
|
||||||
version: "${{ env.GITHUB_REF_NAME }}"
|
version: "${{ env.GITHUB_REF_NAME }}"
|
||||||
overwrite_files: "true"
|
|
||||||
|
|
||||||
|
|||||||
21
.github/workflows/test.yml
vendored
Normal file
21
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "**!master"
|
||||||
|
pull_request:
|
||||||
|
types: [ opened, reopened ]
|
||||||
|
tags:
|
||||||
|
- "!**"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: "shivammathur/setup-php@v2"
|
||||||
|
with:
|
||||||
|
php-version: "7.4"
|
||||||
|
- uses: "ramsey/composer-install@v3"
|
||||||
|
- uses: php-actions/phpunit@v3
|
||||||
|
|
||||||
Reference in New Issue
Block a user