Skip to content

fix(deps): update rust crate serde to 1.0.168 #139

fix(deps): update rust crate serde to 1.0.168

fix(deps): update rust crate serde to 1.0.168 #139

Workflow file for this run

name: Publish Production Image
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.PUBLISH_PACKAGE_PAT }}
- name: Build Docker Images
run: |
docker build --network=host -t pacbot .
docker tag pacbot ghcr.io/pacstall/pacbot:latest
- name: Push Images
run: |
docker push "ghcr.io/pacstall/pacbot:latest"