Skip to content

Revamping building and release with dagger multibuild pipeline 2.0 #3

Revamping building and release with dagger multibuild pipeline 2.0

Revamping building and release with dagger multibuild pipeline 2.0 #3

Workflow file for this run

name: Dagger Pull Request Pipeline
on:
pull_request:
paths-ignore:
- '*.md'
- 'assets/**'
permissions:
contents: write # This is required for actions/checkout
packages: write # This is required for publishing the package
jobs:
test-release:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Call Dagger Function
uses: dagger/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: "latest"
verb: call
module: github.com/bishal7679/[email protected]
args: pull-request --directory-arg=. --github-token=${{ env.GITHUB_TOKEN }}