mirror of https://github.com/Wilfred/difftastic/
Merge commit 'a9a8efad446f78db3989d7ed8517987daf510c83'
commit
25f599838a
@ -0,0 +1,15 @@
|
||||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "npm"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
- package-ecosystem: "cargo"
|
||||
directory: "/"
|
||||
schedule:
|
||||
interval: "daily"
|
||||
@ -1,29 +0,0 @@
|
||||
name: Publish prebuilds
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
prebuild:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest]
|
||||
node-version: [14]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Npm install
|
||||
run: |
|
||||
npm i
|
||||
- run: npm run prebuild && npm run prebuild:upload -u ${PREBUILD_UPLOAD}
|
||||
env:
|
||||
PREBUILD_UPLOAD: ${{ secrets.GITHUB_TOKEN }}
|
||||
shell: bash
|
||||
Loading…
Reference in New Issue