Revert "fml" #59
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: Publish on tag | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read # needed for checkout | |
jobs: | |
runDagger: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Call dagger on-push | |
uses: dagger/dagger-for-github@v5 | |
with: | |
version: "0.10.2" | |
verb: call | |
args: on-push --dir=./modules |