From 837cdd72c7c2bd0b7c8ebf5ff7a248f4621ebe40 Mon Sep 17 00:00:00 2001 From: jusax23 Date: Mon, 26 Feb 2024 14:09:13 +0100 Subject: [PATCH] release actions --- .gitea/workflows/action_push.yml | 8 +++++ .gitea/workflows/action_tag.yml | 16 +++++++++ .gitea/workflows/release_amd.yml | 35 ++++++++++++++++++++ .gitea/workflows/release_code.yml | 42 ++++++++++++++++++++++++ .gitea/workflows/{test.yaml => test.yml} | 5 ++- test.juml | 2 +- 6 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 .gitea/workflows/action_push.yml create mode 100644 .gitea/workflows/action_tag.yml create mode 100644 .gitea/workflows/release_amd.yml create mode 100644 .gitea/workflows/release_code.yml rename .gitea/workflows/{test.yaml => test.yml} (94%) diff --git a/.gitea/workflows/action_push.yml b/.gitea/workflows/action_push.yml new file mode 100644 index 0000000..1a2d037 --- /dev/null +++ b/.gitea/workflows/action_push.yml @@ -0,0 +1,8 @@ +name: Push Action + +on: [push] + +jobs: + test: + uses: ./.gitea/workflows/test.yml + diff --git a/.gitea/workflows/action_tag.yml b/.gitea/workflows/action_tag.yml new file mode 100644 index 0000000..6efed72 --- /dev/null +++ b/.gitea/workflows/action_tag.yml @@ -0,0 +1,16 @@ +name: Tag Action + +on: + push: + tags: + - v* + +jobs: + test: + uses: ./.gitea/workflows/test.yml + release_code: + needs: test + uses: ./.gitea/workflows/release_code.yml + release_amd: + needs: [test, release_code] + uses: ./.gitea/workflows/release_amd.yml \ No newline at end of file diff --git a/.gitea/workflows/release_amd.yml b/.gitea/workflows/release_amd.yml new file mode 100644 index 0000000..a079b54 --- /dev/null +++ b/.gitea/workflows/release_amd.yml @@ -0,0 +1,35 @@ +name: Outbag AMD Release + +on: + workflow_call: + inputs: + secrets: + + +jobs: + release-amd: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Install Dependencies + run: npm ci + + - name: Build + run: | + mkdir build + npm run bundleRelease + + - name: Build AMD + run: | + npm run build-amd + mkdir upload + cp build/bin/* upload + - name: Create Release AMD + id: gitea-release-amd + uses: akkuman/gitea-release-action@v1 + with: + files: | + upload/** + api_key: '${{ secrets.RELEASE_TOKEN }}' diff --git a/.gitea/workflows/release_code.yml b/.gitea/workflows/release_code.yml new file mode 100644 index 0000000..23bd4b6 --- /dev/null +++ b/.gitea/workflows/release_code.yml @@ -0,0 +1,42 @@ +name: Outbag Code release + +on: + workflow_call: + inputs: + secrets: + +jobs: + release-code: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Install Dependencies + run: npm ci + + - name: Build + run: | + mkdir build + npm run prepublish + + - name: Build Code + run: | + apt-get update + apt-get install zip tar -y + mkdir outbag_server + mkdir outbag_server/dist + mkdir upload + cp -r dist/* outbag_server/dist + cp package.json outbag_server + cp package-lock.json outbag_server + cp readme.md outbag_server + zip -r upload/OutbagServer.zip outbag_server/* + tar -czvf upload/OutbagServer.tar.gz outbag_server/* + - name: Create Release Code + id: gitea-release-code + uses: akkuman/gitea-release-action@v1 + with: + files: | + upload/** + api_key: '${{ secrets.RELEASE_TOKEN }}' diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yml similarity index 94% rename from .gitea/workflows/test.yaml rename to .gitea/workflows/test.yml index 7a6c119..76b44ac 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yml @@ -1,6 +1,9 @@ name: Outbag Tests -on: [push] +on: + workflow_call: + inputs: + secrets: jobs: test: diff --git a/test.juml b/test.juml index c782c8b..c7d7474 100644 --- a/test.juml +++ b/test.juml @@ -4,7 +4,7 @@ PORT=7224 PORTexposed=7224 PATHexposed=/ -URL=localhost +URL=test CertLiveSec=2592000 [ssl]