2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GAS (Google Apps Script) でスタンドアロンなライブラリを作るメモ

Last updated at Posted at 2022-08-03

はじめに

GAS (Google Apps Script) でライブラリをデプロイしたときの手順をメモします。

参考サイト

作業

Google Drive での操作

Google Drive から Google Apps Script のプロジェクトを作成する。

Image from Gyazo

Apps Script での操作

コードを変更する

今回はシンプルにログを出力するだけのコードにします。

function myFunction() {
  console.log('myFunction');
}

デプロイする

Image from Gyazo

Image from Gyazo

Image from Gyazo

Image from Gyazo

デプロイできた。

プロジェクトを公開する

Image from Gyazo

スクリプトIDを公開する

GitHub の README.md に記載する。

Image from Gyazo

おわりに

GAS でスタンドアローンなライブラリを作成しました。

ライブラリを利用する際は、スクリプト ID で検索するようです。
また別記事に記載します。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?