mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 06:27:38 +00:00
e9fc0bf5f7
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
19 lines
489 B
YAML
19 lines
489 B
YAML
name: cd
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
cd:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: GoogleCloudPlatform/release-please-action@v2.4.1
|
|
id: release
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
release-type: node
|
|
package-name: nvidia-snatcher
|
|
- name: login into github package registry
|
|
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
|