mirror of
https://github.com/fjogeleit/http-request-action.git
synced 2024-11-21 19:31:00 -05:00
commit
dac2a9ae42
1 changed files with 35 additions and 0 deletions
35
.github/workflows/build-action.yml
vendored
Normal file
35
.github/workflows/build-action.yml
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
name: Build Action
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
ref:
|
||||
description: The branch
|
||||
type: string
|
||||
default: main
|
||||
required: true
|
||||
jobs:
|
||||
build:
|
||||
permissions:
|
||||
contents: write
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout repo
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
ref: ${{ inputs.ref }}
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
npm ci
|
||||
- name: Build Action
|
||||
run: |
|
||||
npm run build
|
||||
- name: Update dist
|
||||
run: |
|
||||
git config user.name 'github-actions[bot]'
|
||||
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
||||
git add ./dist &&
|
||||
git commit -m "Update dist"
|
||||
git push origin HEAD:${{ inputs.ref }}
|
Loading…
Reference in a new issue