Run Github Actions on every commit, at least compiling the code for checking
This commit is contained in:
parent
fb2c98219a
commit
85b309cbb0
10
.github/workflows/dotnetcore.yml
vendored
10
.github/workflows/dotnetcore.yml
vendored
@ -1,9 +1,6 @@
|
|||||||
name: Build, Test, Publish and Dockerise Lora-Map
|
name: Build, Test, Publish and Dockerise Lora-Map
|
||||||
|
|
||||||
on:
|
on: [push]
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -31,7 +28,7 @@ jobs:
|
|||||||
working-directory: ../map-project/Lora-Map
|
working-directory: ../map-project/Lora-Map
|
||||||
|
|
||||||
- name: Create deb files
|
- name: Create deb files
|
||||||
if: success()
|
if: ${{ success() && github.event.ref == 'refs/heads/master' }}
|
||||||
run: |
|
run: |
|
||||||
mkdir ../../../Builds
|
mkdir ../../../Builds
|
||||||
chmod oug+x make-deb.sh
|
chmod oug+x make-deb.sh
|
||||||
@ -80,6 +77,7 @@ jobs:
|
|||||||
docker:
|
docker:
|
||||||
name: Build and push dockerfile
|
name: Build and push dockerfile
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.event.ref == 'refs/heads/master' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout parent project with dependencys
|
- name: Checkout parent project with dependencys
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
@ -89,10 +87,12 @@ jobs:
|
|||||||
submodules: true
|
submodules: true
|
||||||
|
|
||||||
- name: Checkout last versions
|
- name: Checkout last versions
|
||||||
|
if: success()
|
||||||
run: git -C Lora-Map checkout --progress --force ${{ github.sha }}
|
run: git -C Lora-Map checkout --progress --force ${{ github.sha }}
|
||||||
working-directory: ../map-project
|
working-directory: ../map-project
|
||||||
|
|
||||||
- name: Docker build
|
- name: Docker build
|
||||||
|
if: success()
|
||||||
id: docker_build
|
id: docker_build
|
||||||
run: |
|
run: |
|
||||||
DOCKERTAG=$(date +%Y%m%d%H%M%S)
|
DOCKERTAG=$(date +%Y%m%d%H%M%S)
|
||||||
|
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,6 +1,6 @@
|
|||||||
# Changelogs
|
# Changelogs
|
||||||
|
|
||||||
## 1.3.1 - Laufwege Visualisieren
|
## 1.3.2 - Laufwege Visualisieren
|
||||||
### New Features
|
### New Features
|
||||||
* Add posibility to make the past of a marker visible
|
* Add posibility to make the past of a marker visible
|
||||||
* Validating the input of Json, against defined models and only parse them if the match
|
* Validating the input of Json, against defined models and only parse them if the match
|
||||||
@ -15,6 +15,18 @@
|
|||||||
* Refactoring
|
* Refactoring
|
||||||
* Change the SVG link to the correct array behavour
|
* Change the SVG link to the correct array behavour
|
||||||
* Used the new methods of AWebserverDataBackend
|
* Used the new methods of AWebserverDataBackend
|
||||||
|
* Run Github Actions on every commit, at least compiling the code for checking
|
||||||
|
|
||||||
|
## 1.3.1 - Refactory is the king
|
||||||
|
### New Features
|
||||||
|
* Make a SVG Generator and not modify the SVG on the fly
|
||||||
|
* Split the js files on the admin pannel
|
||||||
|
* add a swagger file
|
||||||
|
### Bugfixes
|
||||||
|
### Changes
|
||||||
|
* Refactoring
|
||||||
|
* Update the Manual a bit
|
||||||
|
* Push to netcore 3.1
|
||||||
|
|
||||||
## 1.3.0 - New Gateway
|
## 1.3.0 - New Gateway
|
||||||
### New Features
|
### New Features
|
||||||
|
@ -55,11 +55,11 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="../CHANGELOG.md" />
|
<Content Include="../CHANGELOG.md" />
|
||||||
<Content Include="../CONTRIBUTING.md" />
|
<Content Include="../CONTRIBUTING.md" />
|
||||||
<Content Include="../LICENSE" />
|
<Content Include="../LICENSE" />
|
||||||
<Content Include="../README.md" />
|
<Content Include="../README.md" />
|
||||||
<Content Include="../map-swagger.yml" />
|
<Content Include="../map-swagger.yml" />
|
||||||
<Content Include="../.github/workflows/dotnetcore.yml" />
|
<Content Include="../.github/workflows/dotnetcore.yml" />
|
||||||
<Content Include="../doc/Manual.md" />
|
<Content Include="../doc/Manual.md" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user