forked from smith-chem-wisc/MetaMorpheus
-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (68 loc) · 2.24 KB
/
DockerUpload.yml
File metadata and controls
71 lines (68 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Docker Uploads
on:
push:
branches: [ master ] # dev tag on merges to master
release:
types: [released, edited] # latest + version tag on new releases
# Docker (Linux) push on branch merges (not PRs)
jobs:
docker-dev:
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
needs: [build-test]
timeout-minutes: 20
env:
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ./MetaMorpheus.sln
- name: Build (CMD)
run: dotnet publish /p:Configuration=Release ./CMD/CMD.csproj -f net8.0
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKER_USER }}
password: ${{ env.DOCKER_TOKEN }}
- name: Build and push :dev
uses: docker/build-push-action@v6
with:
context: "/home/runner/work/MetaMorpheus/MetaMorpheus"
push: true
tags: smithchemwisc/metamorpheus:dev
# Push to "latest" and specific release tags on new release
push-release:
if: github.event_name == 'release'
runs-on: ubuntu-latest
timeout-minutes: 20
env:
DOCKER_USER: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ./MetaMorpheus.sln
- name: Build (CMD)
run: dotnet publish /p:Configuration=Release ./CMD/CMD.csproj -f net8.0
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ env.DOCKER_USER }}
password: ${{ env.DOCKER_TOKEN }}
- name: Build and push :latest
uses: docker/build-push-action@v6
with:
context: "/home/runner/work/MetaMorpheus/MetaMorpheus"
push: true
tags: smithchemwisc/metamorpheus:${{ github.event.release.tag_name }}, smithchemwisc/flashlfq:latest