-
Notifications
You must be signed in to change notification settings - Fork 30
38 lines (29 loc) · 926 Bytes
/
dev.yml
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
name: Docker Develop Release
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
docker-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: checkout the repo
run: |
docker login --username ${{ secrets.GH_USERNAME }} --password ${{ secrets.GH_TOKEN }} ghcr.io
docker build -t ghcr.io/drazzilb08/userscripts:dev .
docker push ghcr.io/drazzilb08/userscripts:dev
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/userscripts:dev