21 Commits

Author SHA1 Message Date
0c4aec4886 Actions: Update build branch name
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 13s
2024-09-15 17:38:36 +02:00
6d5dd2125a Merge branch 'dev' of https://git.kozelkaricsi.hu/Cyanoure/NodeTest into dev
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 14s
2024-09-15 17:35:50 +02:00
0d1725d93c Actions: build -> autobuild 2024-09-15 17:35:48 +02:00
ef603893d4 Merge branch 'main' into dev
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 12s
2024-09-15 15:22:39 +00:00
f437c74634 Test commit
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 13s
2024-09-15 17:19:02 +02:00
a1439f7c3d Test commit
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 11s
2024-09-15 17:18:10 +02:00
7578ff60f0 Update Actions
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 12s
2024-09-15 17:16:34 +02:00
02d87f88da Update Actions
Some checks failed
Build and Save Artifact / build (pull_request) Failing after 5s
2024-09-15 17:15:34 +02:00
0945bb417f Update Actions
Some checks failed
Build and Save Artifact / build (pull_request) Failing after 6s
2024-09-15 17:12:04 +02:00
44498fed29 Update Actions: Source branch name
Some checks failed
Build and Save Artifact / build (pull_request) Failing after 7s
2024-09-15 17:09:36 +02:00
8a4a11caf6 Actions: Other method for branch name
Some checks failed
Build and Save Artifact / build (pull_request) Failing after 6s
2024-09-15 17:06:27 +02:00
afb015fed1 Actions: Remove dev branch 2024-09-15 17:02:55 +02:00
849d2f96aa Merge pull request 'Remove default export' (#9) from dev into main
Reviewed-on: #9
2024-09-15 12:57:15 +00:00
32e046b048 Merge pull request 'Build' (#8) from dev into main
Reviewed-on: #8
2024-09-15 12:48:35 +00:00
54f2b9a45c Merge pull request 'Update' (#7) from dev into main
Reviewed-on: #7
2024-09-15 12:47:03 +00:00
9f86e667e1 Merge pull request 'Fix main file' (#6) from dev into main
Reviewed-on: #6
2024-09-15 12:44:24 +00:00
627d6c023e Merge pull request 'Module name' (#5) from dev into main
Reviewed-on: #5
2024-09-15 12:41:59 +00:00
74d3a2ba71 Merge pull request 'Idk? Build?' (#4) from dev into main
Reviewed-on: #4
2024-09-15 12:40:50 +00:00
d39bdaa95f Merge pull request 'TSUP' (#3) from dev into main
Reviewed-on: #3
2024-09-15 12:33:23 +00:00
a38767d4ea Merge pull request 'Move everything to root' (#2) from dev into main
Reviewed-on: #2
2024-09-15 11:55:58 +00:00
118db0b0fb Merge pull request 'TypeScript Module' (#1) from dev into main
Reviewed-on: #1
2024-09-15 11:51:34 +00:00

View File

@ -4,7 +4,6 @@ on:
push: push:
branches: branches:
- main - main
- dev
pull_request: pull_request:
branches: branches:
- main - main
@ -24,16 +23,23 @@ jobs:
with: with:
node-version: '22' node-version: '22'
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
# Initialize build branch # Initialize build branch
- name: Initialize build branch - name: Initialize build branch
run: | run: |
SOURCE_BRANCH_NAME=${{ steps.extract_branch.outputs.branch }}
git config --global user.name 'Git Workflow Bot' git config --global user.name 'Git Workflow Bot'
git config --global user.email 'noreply@kozelkaricsi.hu' git config --global user.email 'noreply@kozelkaricsi.hu'
git fetch --all --unshallow git fetch origin
BRANCH_NAME="${GITHUB_REF_NAME}-build" git checkout ${SOURCE_BRANCH_NAME}
BRANCH_NAME="autobuild/${SOURCE_BRANCH_NAME}"
git fetch origin $BRANCH_NAME --unshallow || true # Allow failure if branch doesn't exist git fetch origin $BRANCH_NAME --unshallow || true # Allow failure if branch doesn't exist
git switch $BRANCH_NAME || git switch -c $BRANCH_NAME git switch $BRANCH_NAME || git switch -c $BRANCH_NAME
git merge ${GITHUB_REF_NAME} -m "Update branch [skip ci]" git merge ${SOURCE_BRANCH_NAME} -m "Update branch [skip ci]"
rm -rf dist rm -rf dist
# Install dependencies # Install dependencies