29 lines
607 B
YAML
29 lines
607 B
YAML
|
name: Build and Publish
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
Build and Publish Discord Bot:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 18
|
||
|
|
||
|
- run: npm install
|
||
|
working-directory: ./discordbot
|
||
|
|
||
|
- uses: docker/login-action@v2
|
||
|
with:
|
||
|
registry: gitea.xeovalyte.dev
|
||
|
username: ${{ gitea.actor }}
|
||
|
password: ${{ secrets.GITEA_TOKEN }}
|
||
|
|
||
|
- uses: docker/build-push-action@master
|
||
|
with:
|
||
|
context: ./discordbot
|
||
|
push: true
|
||
|
tags: latest
|
||
|
|