Skip to content

Commit

Permalink
ci: Add missing publish workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
witwash committed Aug 15, 2024
1 parent 75e36f1 commit 5f38fa8
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/kiosk_mode-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish kiosk_mode to pub.dev

on:
push:
tags:
- "kiosk_mode-v[0-9]+.[0-9]+.[0-9]+*"

jobs:
publish:
name: Publish to pub.dev
runs-on: ubuntu-latest
environment: pub.dev
permissions:
id-token: write
steps:
- name: Clone repository
uses: actions/checkout@v4

- uses: ./.github/actions/publish
with:
working-directory: kiosk_mode
21 changes: 21 additions & 0 deletions .github/workflows/remote_logger-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish remote_logger to pub.dev

on:
push:
tags:
- "remote_logger-v[0-9]+.[0-9]+.[0-9]+*"

jobs:
publish:
name: Publish to pub.dev
runs-on: ubuntu-latest
environment: pub.dev
permissions:
id-token: write
steps:
- name: Clone repository
uses: actions/checkout@v4

- uses: ./.github/actions/publish
with:
working-directory: remote_logger

0 comments on commit 5f38fa8

Please sign in to comment.