ci(dagger): fix dagger-cue install #432
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: github.com/a11ywatch/a11ywatch | |
on: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
runs-on: ubuntu-22.04 | |
env: | |
GITHUB_SHA: ${{ github.sha }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Dagger | |
uses: dagger/dagger-for-github@v3 | |
with: | |
install-only: true | |
- name: Build deps | |
run: | | |
sudo apt update && sudo apt upgrade -y | |
sudo apt install -y curl | |
curl -sSLf https://raw.githubusercontent.com/octohelm/wagon/main/install.sh | sh | |
- name: Wagon do test | |
run: wagon do test | |
# - name: Dagger do deploy | |
# run: dagger do deploy --log-format plain |