added deployment workflow

This commit is contained in:
steev 2023-10-03 16:55:46 +02:00
parent 09c2a759d2
commit 006af61985
2 changed files with 36 additions and 18 deletions

View File

@ -1,18 +0,0 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."

View File

@ -0,0 +1,36 @@
name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
pull_request:
branches:
- Release
jobs:
create_release:
steps:
- name: Check out den Quellcode
uses: actions/checkout@v2
- name: Install build environment
uses: actions/setup-node@v2
with:
node-version: 'lts'
- name: Install dependencies
run: npm install
- name: Build source
run: npm run build
- name: create release
id: create_release
run: |
git config user.name "gitea"
git config user.email "gitea@git.slpnetwork.de"
git tag v${{ gitea.run_number }} -m "Automatisches Release erstellt"
git push origin v${{ gitea.run_number }}
- name: print release url
run: echo "Created release: https://git.slpnetwork.de/${{ gitea.repository }}/releases/tag/v${{ gitea.run_number }}"