mirror of
https://github.com/g3rv4/GetMoarFediverse.git
synced 2024-11-21 23:23:09 +01:00
Create tags with manual gate
This commit is contained in:
parent
241f20632b
commit
41821ea23a
23
.github/workflows/build.yml
vendored
23
.github/workflows/build.yml
vendored
@ -1,7 +1,5 @@
|
|||||||
name: build
|
name: build
|
||||||
on:
|
on: push
|
||||||
push:
|
|
||||||
branches: [ main ]
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -9,22 +7,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
- name: Build things
|
||||||
fetch-depth: 0 # get entire git tree, required for nerdbank gitversioning
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ github.actor }}
|
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
- name: Build and push the Docker image
|
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
Push-Location src
|
docker build .
|
||||||
$version = (nbgv get-version -f json | ConvertFrom-Json).SimpleVersion
|
|
||||||
Write-Host "Version $version"
|
|
||||||
Pop-Location
|
|
||||||
|
|
||||||
docker build . --tag ghcr.io/g3rv4/getmoarfediverse:latest --tag "ghcr.io/g3rv4/getmoarfediverse:$version"
|
|
||||||
docker push ghcr.io/g3rv4/getmoarfediverse:latest
|
|
||||||
docker push "ghcr.io/g3rv4/getmoarfediverse:$version"
|
|
||||||
|
85
.github/workflows/create-release.yml
vendored
Normal file
85
.github/workflows/create-release.yml
vendored
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
name: Create Release
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
jobs:
|
||||||
|
create-windows-artifact:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Build Windows artifact
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
mkdir output
|
||||||
|
$outputPath = Join-Path (Pwd) output
|
||||||
|
$srcPath = Join-Path (Pwd) src
|
||||||
|
docker run -v "$($outputPath):/var/output" -v "$($srcPath):/var/src" mcr.microsoft.com/dotnet/sdk:6.0.403-alpine3.16 dotnet publish -r win-x64 --self-contained -p:PublishTrimmed=true -c Release /var/src/GetMoarFediverse.csproj -o /var/output
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: GetMoarFediverse.exe
|
||||||
|
path: output/GetMoarFediverse.exe
|
||||||
|
|
||||||
|
create-linux-artifact:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Build Windows artifact
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
mkdir output
|
||||||
|
$outputPath = Join-Path (Pwd) output
|
||||||
|
$srcPath = Join-Path (Pwd) src
|
||||||
|
docker run -v "$($outputPath):/var/output" -v "$($srcPath):/var/src" mcr.microsoft.com/dotnet/sdk:6.0.403-alpine3.16 dotnet publish -r linux-x64 --self-contained -p:PublishTrimmed=true -c Release /var/src/GetMoarFediverse.csproj -o /var/output
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: GetMoarFediverse
|
||||||
|
path: output/GetMoarFediverse
|
||||||
|
|
||||||
|
create-docker-image:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0 # get entire git tree, required for nerdbank gitversioning
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- name: Build and push the Docker image
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
Push-Location src
|
||||||
|
$version = (nbgv get-version -f json | ConvertFrom-Json).SimpleVersion
|
||||||
|
Write-Host "Version $version"
|
||||||
|
Pop-Location
|
||||||
|
|
||||||
|
docker build . --tag ghcr.io/g3rv4/getmoarfediverse:latest --tag "ghcr.io/g3rv4/getmoarfediverse:$version"
|
||||||
|
docker push ghcr.io/g3rv4/getmoarfediverse:latest
|
||||||
|
docker push "ghcr.io/g3rv4/getmoarfediverse:$version"
|
||||||
|
|
||||||
|
create-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [ create-windows-artifact, create-linux-artifact ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@master
|
||||||
|
with:
|
||||||
|
name: GetMoarFediverse
|
||||||
|
path: artifacts/GetMoarFediverse
|
||||||
|
- uses: actions/download-artifact@master
|
||||||
|
with:
|
||||||
|
name: GetMoarFediverse.exe
|
||||||
|
path: artifacts/GetMoarFediverse.exe
|
||||||
|
- name: Release
|
||||||
|
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
|
||||||
|
with:
|
||||||
|
generate_release_notes: true
|
||||||
|
fail_on_unmatched_files: true
|
||||||
|
files: |
|
||||||
|
artifacts/GetMoarFediverse
|
||||||
|
artifacts/GetMoarFediverse.exe
|
27
.github/workflows/create-tag.yml
vendored
Normal file
27
.github/workflows/create-tag.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
name: Create Tag
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deployment:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment: release
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0 # get entire git tree, required for nerdbank gitversioning
|
||||||
|
ssh-key: "${{ secrets.GIT_KEY }}"
|
||||||
|
- name: Create a tag
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
Push-Location src
|
||||||
|
$version = (nbgv get-version -f json | ConvertFrom-Json).SimpleVersion
|
||||||
|
$version = "v$version"
|
||||||
|
Pop-Location
|
||||||
|
|
||||||
|
git tag $version
|
||||||
|
git push origin $version
|
Loading…
Reference in New Issue
Block a user