fix: Login #4
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
# on: workflow_dispatch | |
on: [push, pull_request] | |
name: devpod | |
jobs: | |
devpod: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- name: Build | |
run: | | |
sudo curl -L -o /usr/local/bin/devpod https://github.com/loft-sh/devpod/releases/download/v0.5.4/devpod-linux-amd64 | |
if [[ "$(sha256sum /usr/local/bin/devpod | awk '{print $1}')" != "7a2043e8dcc035e26dba3c984ffb3db68894f5a2fcadf33c1de0b92b7069b634" ]]; then | |
echo "Devpod checksum failed" | |
exit 1 | |
fi | |
sudo chmod +x /usr/local/bin/devpod | |
devpod provider add docker | |
devpod build --platform linux/amd64,linux/arm64 . |