Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .github/workflows/publish.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/publish_inject_compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# .github/workflows/publish_inject_compile.yml
name: Publish inject_compile to pub.dev

on:
push:
tags:
- 'inject_compile-v[0-9]+.[0-9]+.[0-9]+*'

jobs:
publish:
permissions:
id-token: write # Required for authentication using OIDC
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
with:
working-directory: package/inject_compile
environment: pub.dev
16 changes: 16 additions & 0 deletions .github/workflows/publish_inject_compile_generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# .github/workflows/publish_inject_compile_generator.yml
name: Publish inject_compile_generator to pub.dev

on:
push:
tags:
- 'inject_compile_generator-v[0-9]+.[0-9]+.[0-9]+*'

jobs:
publish:
permissions:
id-token: write # Required for authentication using OIDC
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
with:
working-directory: package/inject_compile_generator
environment: pub.dev
1 change: 1 addition & 0 deletions example/clean_architecture/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: clean_architecture
description: A clean architecture example using inject_compile
version: 1.0.0
publish_to: none

environment:
sdk: ^3.12.2
Expand Down
Loading