forked from siranweb/activitypub-types
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e5843e
commit c112d50
Showing
2 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
name: Build | ||
on: | ||
push: | ||
branches: | ||
- master | ||
on: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
- name: Build and push | ||
uses: alexthemaster/action-build-typescript@v. # check the releases tab on the right for versions (looks like this: v1.0.0) | ||
# use this if you want the sharpest of cutting edges (can and probably WILL break from time to time) | ||
# uses: alexthemaster/action-build-typescript@master | ||
with: | ||
pushToBranch: true # optional; can either be true or false | defaults to false | ||
branch: 'dist' # optional; the name of the branch the action should push the compiled code to | defaults to dist | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} # required if you use the pushToBranch option | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project | ||
uses: actions/checkout@v3 | ||
- name: Build and push | ||
uses: alexthemaster/action-build-typescript@v. # check the releases tab on the right for versions (looks like this: v1.0.0) | ||
# use this if you want the sharpest of cutting edges (can and probably WILL break from time to time) | ||
# uses: alexthemaster/action-build-typescript@master | ||
with: | ||
pushToBranch: true # optional; can either be true or false | defaults to false | ||
branch: "dist" # optional; the name of the branch the action should push the compiled code to | defaults to dist | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} # required if you use the pushToBranch option |
This file contains 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