This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to Maven Central | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
release: | |
types: [ released ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
kotlin("multiplatform") | |
id("com.android.library") | |
id("org.jetbrains.dokka") | |
id("maven-publish") | |
id("signing") | |
... | |
} | |
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins { | |
id("io.github.gradlebom.generator-plugin").version("1.0.0.Final") | |
id("signing") | |
} | |
group = "io.github.tweener" // Change here | |
version = "1.0.0" // Change here | |
publishing { | |
publications { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to Maven Central | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
release: | |
types: [ released ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Building my awesome library | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {onRequest} = require("firebase-functions/v2/https"); | |
const {logger} = require("firebase-functions/v2"); | |
const {initializeApp} = require("firebase-admin/app"); | |
const {defineSecret} = require("firebase-functions/params"); | |
const axios = require("axios"); | |
const cors = require("cors")({origin: true}); | |
const admin = require("firebase-admin"); | |
initializeApp(); |