-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Push a workflow that will trigger on version file change
- Loading branch information
1 parent
3ea9d48
commit e7e6385
Showing
4 changed files
with
148 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build and Release Docker Image | ||
on: | ||
release: | ||
types: [published, prereleased] | ||
|
||
jobs: | ||
build: | ||
name: Build and Push | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: | | ||
8.0.x | ||
- name: Log Variables | ||
run: | | ||
echo "action - ${{ github.event.action }}" | ||
echo "url - ${{ github.event.release.url }}" | ||
echo "assets_url - ${{ github.event.release.assets_url }}" | ||
echo "id - ${{ github.event.release.id }}" | ||
echo "tag_name - ${{ github.event.release.tag_name }}" | ||
echo "assets - ${{ github.event.assets }}" | ||
echo "assets[0] - ${{ github.event.assets[0] }}" | ||
- uses: cschleiden/replace-tokens@v1 | ||
with: | ||
files: '["**/Dockerfile.Release"]' | ||
env: | ||
VERSION: ${{ github.event.release.tag_name }} | ||
|
||
- name: Build the Docker container image | ||
run: docker build -f "./src/Angor/Server/Dockerfile.Release" -t blockcore/angor:latest -t blockcore/angor:${{ github.event.release.tag_name }} --label "unstable=true" "." | ||
|
||
- name: Login and Push to Docker Registry | ||
run: | | ||
docker login -u "sondreb" -p "${{secrets.DOCKER_KEY}}" | ||
docker push --all-tags blockcore/angor |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,104 @@ | ||
name: Build and Release Docker Image | ||
name: Build and create a Release | ||
|
||
on: | ||
release: | ||
types: [published, prereleased] | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build and Push | ||
runs-on: ubuntu-latest | ||
# if the presence of '-release' exists in the tag abort | ||
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-release') | ||
strategy: | ||
matrix: | ||
os: [windows-latest, ubuntu-latest, macos-latest] | ||
include: | ||
- os: windows-latest | ||
extension: ".zip" | ||
runtime: "win-x64" | ||
- os: ubuntu-latest | ||
extension: ".tar.gz" | ||
runtime: "linux-x64" | ||
- os: macos-latest | ||
runtime: "osx-x64" | ||
extension: ".zip" | ||
node_version: [18] | ||
fail-fast: false | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
env: | ||
PROJECT_NAME: "Angor" | ||
SOLUTION_PATH: "src/Angor.sln" | ||
PROJECT_PATH: "src/Angor/Server/Angor.Server.csproj" | ||
BUILD_CONFIGURATION: "Release" | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/checkout@v1 | ||
name: Checkout | ||
|
||
- name: Setup dotnet | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: | | ||
dotnet-version: | | ||
8.0.x | ||
- name: Log Variables | ||
run: | | ||
echo "action - ${{ github.event.action }}" | ||
echo "url - ${{ github.event.release.url }}" | ||
echo "assets_url - ${{ github.event.release.assets_url }}" | ||
echo "id - ${{ github.event.release.id }}" | ||
echo "tag_name - ${{ github.event.release.tag_name }}" | ||
echo "assets - ${{ github.event.assets }}" | ||
echo "assets[0] - ${{ github.event.assets[0] }}" | ||
- uses: cschleiden/replace-tokens@v1 | ||
- name: Setup Node.js (${{ matrix.node_version }}) | ||
uses: actions/setup-node@v1 | ||
with: | ||
files: '["**/Dockerfile.Release"]' | ||
env: | ||
VERSION: ${{ github.event.release.tag_name }} | ||
node-version: ${{ matrix.node_version }} | ||
|
||
- name: Variables | ||
run: | | ||
echo VERSION=$(npm run version --silent) >> $GITHUB_ENV | ||
shell: bash | ||
|
||
- name: Workload | ||
run: dotnet workload restore ${{env.SOLUTION_PATH}} | ||
|
||
- name: Restore | ||
run: dotnet restore ${{env.SOLUTION_PATH}} | ||
|
||
- name: Build the Docker container image | ||
run: docker build -f "./src/Angor/Server/Dockerfile.Release" -t blockcore/angor:latest -t blockcore/angor:${{ github.event.release.tag_name }} --label "unstable=true" "." | ||
- name: Unit Test | ||
run: dotnet test -v=normal -c ${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_PATH}} | ||
|
||
- name: Login and Push to Docker Registry | ||
- name: Publish (Angor) | ||
run: dotnet publish -c ${{env.BUILD_CONFIGURATION}} -r ${{matrix.runtime}} /p:Version=${{ env.VERSION }} -v m -o ./src/${{ env.PROJECT_NAME }}/bin/publish ${{env.PROJECT_PATH}} | ||
|
||
- name: Package Name | ||
run: | | ||
echo RELEASE_NAME=${{ env.PROJECT_NAME }}-${{ env.VERSION }}-${{ matrix.runtime }}${{ matrix.extension }} >> $GITHUB_ENV | ||
echo RELEASE_PATH=${{ env.PROJECT_NAME }}-${{ env.VERSION }}-${{ matrix.runtime }}${{ matrix.extension }} >> $GITHUB_ENV | ||
shell: bash | ||
|
||
- name: Package (Linux) | ||
if: matrix.os == 'ubuntu-latest' | ||
run: | | ||
echo RELEASE_PATH=./src/${{env.PROJECT_NAME}}/bin/publish/${{env.RELEASE_NAME}} >> $GITHUB_ENV | ||
cd ./src/${{env.PROJECT_NAME}}/bin/publish/ | ||
tar cvzf ${{env.RELEASE_NAME}} * | ||
- name: Package (Windows) | ||
if: matrix.os == 'windows-latest' | ||
run: | | ||
Compress-Archive -Path .\src\${{env.PROJECT_NAME}}\bin\publish\* -DestinationPath .\${{env.RELEASE_NAME}} | ||
- name: Package (Mac) | ||
if: matrix.os == 'macos-latest' | ||
run: | | ||
docker login -u "sondreb" -p "${{secrets.DOCKER_KEY}}" | ||
docker push --all-tags blockcore/angor | ||
zip -r ${{env.RELEASE_NAME}} ./src/${{env.PROJECT_NAME}}/bin/publish/ | ||
- uses: actions/upload-artifact@v1 | ||
with: | ||
name: api | ||
path: "${{env.RELEASE_PATH}}" | ||
|
||
- name: Release | ||
uses: sondreb/action-release@main | ||
with: | ||
commit: "main" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
files: "${{env.RELEASE_PATH}}" | ||
draft: true | ||
prerelease: false | ||
body: "" | ||
name: "Angor (Release ${{env.VERSION}})" | ||
tag: "v${{env.VERSION}}-release" |