Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

[Graphite MQ] Draft PR GROUP:00aad8 (PRs 557) #558

Closed
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
54 changes: 0 additions & 54 deletions .github/actions/docker-build-push/action.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/deno.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/docker.yml

This file was deleted.

69 changes: 0 additions & 69 deletions .github/workflows/opengb.yml

This file was deleted.

49 changes: 44 additions & 5 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,48 @@ permissions:
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag_name: ${{ steps.release.outputs.tag_name }}
release_sha: ${{ steps.release.outputs.sha }}

steps:
- id: release
uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
config-file: release-please-config.json

publish:
needs: release-please
if: needs.release-please.outputs.release_created == 'true'
runs-on: ubuntu-latest
name: Publish to Godot Asset Store

steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
config-file: release-please-config.json
skip-github-release: true
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true

- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.46.1

- name: Build & Release
env:
OUTPUT_DIR: /tmp/artifacts/
TOOLCHAIN_VERSION: ${{ needs.release-please.outputs.tag_name }}
AWS_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }}
CROSS_DELETE_TARGET: 1
run: |
./scripts/release.ts

- name: Upload ZIP artifact
uses: actions/upload-artifact@v3
with:
name: rivet-plugin
path: /tmp/artifacts//*.zip

Loading
Loading