Skip to content

chore(deps): update dependency starship/starship to v1.21.1 #1195

chore(deps): update dependency starship/starship to v1.21.1

chore(deps): update dependency starship/starship to v1.21.1 #1195

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
env:
IMAGE: ghcr.io/${{ github.repository_owner }}/dotfiles
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ env.IMAGE }}:${{ github.sha }}
- uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ${{ env.IMAGE }}:laetst
if: github.ref == 'refs/heads/main'
format:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: lua
cmd: |
stylua --check -g '*.lua' -- config/{.config,.hammerspoon}
- name: sh
cmd: |
shfmt -i 2 -d bin config/{.bin,.config/zsh} install
name: format-${{ matrix.name }}
steps:
- uses: actions/checkout@v4
- uses: aquaproj/[email protected]
with:
aqua_version: v2.36.1
- run: ${{ matrix.cmd }}