chore: devcontainer-cache-build-initialize rename #4
Workflow file for this run
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: Push workflow | |
on: push | |
jobs: | |
devcontainer-cache-build: | |
name: Populate Codespaces image cache | |
runs-on: ubuntu-24.04 | |
permissions: | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: GHCR Login | |
uses: docker/[email protected] | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build codespace devcontainer cache | |
run: | | |
./.devcontainer/initialize --set useradd.args.USER=codespace --set useradd.args.USER_UID=1000 --set useradd.args.USER_GID=1000 --set pre-commit.args.USER=codespace | |
release-it-workflow: | |
uses: rcwbr/release-it-gh-workflow/.github/workflows/[email protected] | |
with: | |
app-id: 1050758 # devcntr-cache-build-ci-release-it release-it app | |
app-environment: Repo release | |
secrets: | |
app-secret: ${{ secrets.RELEASE_IT_GITHUB_APP_KEY }} # Secret belonging to the Repo release environment |