mirror of
https://github.com/zdharma-continuum/zinit.git
synced 2026-09-10 07:36:38 -04:00
🤣 Add emojis
This commit is contained in:
parent
903a612957
commit
005e76a7b8
24
.github/workflows/containers.yaml
vendored
24
.github/workflows/containers.yaml
vendored
|
|
@ -16,30 +16,30 @@ jobs:
|
|||
- 5.7.1
|
||||
- 5.8
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
- name: 📡 Check out repository code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Grab git slugs (short commit id, branch etc.)
|
||||
- name: 🍃 Grab git slugs (short commit id, branch etc.)
|
||||
uses: rlespinasse/github-slug-action@v3.x
|
||||
|
||||
- name: Set up QEMU
|
||||
- name: 🌐 Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
- name: 🐋 Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
with:
|
||||
install: true
|
||||
use: true
|
||||
|
||||
- name: Login to GitHub Container Registry
|
||||
- name: 🔑 Login to GitHub Container Registry
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
- name: 🐳 Build and push
|
||||
id: docker_build_zsh_versions
|
||||
uses: docker/build-push-action@v2
|
||||
# Older zsh version tend to make GH runners hang when building
|
||||
|
|
@ -59,30 +59,30 @@ jobs:
|
|||
build-container-latest:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
- name: 📡 Check out repository code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Grab git slugs (short commit id, branch etc.)
|
||||
- name: 🍃 Grab git slugs (short commit id, branch etc.)
|
||||
uses: rlespinasse/github-slug-action@v3.x
|
||||
|
||||
- name: Set up QEMU
|
||||
- name: 🌐 Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
- name: 🐋 Set up Docker Buildx
|
||||
id: buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
with:
|
||||
install: true
|
||||
use: true
|
||||
|
||||
- name: Login to GitHub Container Registry
|
||||
- name: 🔑 Login to GitHub Container Registry
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
- name: 🐳 Build and push
|
||||
id: docker_build_latest
|
||||
uses: docker/build-push-action@v2
|
||||
if: github.ref == 'refs/heads/main'
|
||||
|
|
|
|||
Loading…
Reference in a new issue