forked from Sharkord/sharkord
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (28 loc) · 977 Bytes
/
Copy pathdevelop-image.yml
File metadata and controls
35 lines (28 loc) · 977 Bytes
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
name: Publish Development Image
on:
workflow_dispatch:
concurrency:
group: docker-dev
cancel-in-progress: true
jobs:
ci:
uses: ./.github/workflows/ci.yml
build-and-publish:
needs: [ci]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build project artifacts
uses: ./.github/actions/build-sharkord
- name: Build and publish Docker image
uses: ./.github/actions/docker-build-publish
with:
docker_username: ${{ secrets.DOCKER_USERNAME }}
docker_password: ${{ secrets.DOCKER_PASSWORD }}
tags: ${{ secrets.DOCKER_USERNAME }}/sharkord:dev
labels: |
org.opencontainers.image.title=Sharkord
org.opencontainers.image.description=Sharkord Server (dev)
org.opencontainers.image.source=https://github.com/Sharkord/sharkord
org.opencontainers.image.revision=${{ github.sha }}