Update docker/login-action digest to d910b14 (#8) #27
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: Dagger Pipeline | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python 3 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install dagger-io | |
- name: Login to Dockerhub registry | |
uses: docker/login-action@v3 | |
with: | |
username: qjoly | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run Dagger | |
run: | | |
python .ci/run_dagger.py |