This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
update workflow #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Buildup | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Docker image | |
run: docker build -f Dockerfile -t gliese129/bililive-uploader:latest . | |
- name: Save artifact | |
run: mkdir -p build && | |
docker save -o build/images.tar gliese129/bililive-uploader:latest | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: docker-images | |
path: build/images.tar | |
upload: | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: docker workflow | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: docker-images | |
- name: Load docker images | |
run: docker load -i images.tar | |
- name: Log in to Docker Hub | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PWD }} | |
- name: Push to docker hub | |
run: docker push gliese129/bililive-uploader:latest |