feat(set): implement nocaseglob + nocasematch options (#282) #248
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: "Devcontainer" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- ".devcontainer/**" | |
jobs: | |
build: | |
name: "Build devcontainer" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Pre-build dev container image | |
uses: devcontainers/[email protected] | |
with: | |
imageName: ghcr.io/reubeno/brush/devcontainer | |
imageTag: latest | |
cacheFrom: ghcr.io/reubeno/brush/devcontainer | |
push: never | |
build_and_publish: | |
name: "Build and publish devcontainer" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Pre-build dev container image | |
uses: devcontainers/[email protected] | |
with: | |
imageName: ghcr.io/reubeno/brush/devcontainer | |
imageTag: latest | |
cacheFrom: ghcr.io/reubeno/brush/devcontainer | |
push: filter | |
refFilterForPush: refs/heads/main | |
eventFilterForPush: push |