Skip to content

add: nvim chatgpt and indent #28

add: nvim chatgpt and indent

add: nvim chatgpt and indent #28

Workflow file for this run

name: Build and Push Docker Image
on:
push:
paths:
- '**Dockerfile'
- 'stow-dotfiles/**'
- '.github/**'
schedule:
- cron: "0 0 1 * *"
jobs:
base:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: wongsingfo
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
tags: |
wongsingfo/dotfiles:latest
wongsingfo/dotfiles:amd64
# platforms: linux/amd64,linux/arm64
platforms: linux/amd64
file: ./base.Dockerfile
rust:
runs-on: ubuntu-latest
needs: [ base ]
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: wongsingfo
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
push: true
tags: wongsingfo/dotfiles:rust
file: ./rust.Dockerfile