29 lines
749 B
YAML
Executable File
29 lines
749 B
YAML
Executable File
name: Bot Dockerization
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
DHUB_UNAME: ${{ secrets.DHUB_UNAME }}
|
|
DHUB_PWORD: ${{ secrets.DHUB_PWORD }}
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag v0idf1sh/tag
|
|
- name: Log into Docker Hub
|
|
run: docker login -u $DHUB_UNAME -p $DHUB_PWORD
|
|
- name: Push image to Docker Hub
|
|
run: docker push v0idf1sh/tag
|
|
- name: Set up a skeleton .env file
|
|
run: echo "TOKEN=${{secrets.TOKEN}}" > .env && echo "BOTID=${{ secrets.BOTID }}" >> .env
|
|
- name: Install modules
|
|
run: npm i
|
|
- name: Refresh commands with Discord
|
|
run: node modules/_deploy-global.js |