2023-01-06 22:50:59 +00:00
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: CI-CD
|
2023-01-06 22:47:42 +00:00
|
|
|
|
2023-01-06 23:12:40 +00:00
|
|
|
# Controls when the action will run.
|
2023-01-06 22:47:42 +00:00
|
|
|
on:
|
2023-01-06 22:50:59 +00:00
|
|
|
# Triggers the workflow on push or pull request events but only for the main branch
|
2023-01-06 22:47:42 +00:00
|
|
|
push:
|
2023-01-06 23:12:40 +00:00
|
|
|
branches: [main]
|
2023-01-06 22:50:59 +00:00
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
2023-01-06 23:12:40 +00:00
|
|
|
|
2023-01-06 22:50:59 +00:00
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
2023-01-06 22:47:42 +00:00
|
|
|
jobs:
|
2023-01-06 23:12:40 +00:00
|
|
|
push_to_Docker_Hub:
|
2023-01-06 22:50:59 +00:00
|
|
|
# The type of runner that the job will run on
|
2023-01-06 22:47:42 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-06 23:12:40 +00:00
|
|
|
# build docker image and push to docker hub
|
2023-01-06 23:13:34 +00:00
|
|
|
#needs: [build_test]
|
2023-01-06 22:50:59 +00:00
|
|
|
|
2023-01-06 23:12:40 +00:00
|
|
|
steps:
|
|
|
|
- name: checkout repo
|
|
|
|
uses: actions/checkout@v2
|
2023-01-06 22:50:59 +00:00
|
|
|
|
2023-01-06 23:12:40 +00:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
2023-01-06 22:50:59 +00:00
|
|
|
|
2023-01-06 23:12:40 +00:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
2023-01-06 22:50:59 +00:00
|
|
|
|
2023-01-06 23:12:40 +00:00
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2023-01-06 22:50:59 +00:00
|
|
|
|
2023-01-06 23:12:40 +00:00
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
push: true
|
|
|
|
tags: ${{ secrets.DOCKERHUB_USERNAME }}/beatsaber-overlay:latest
|