Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Sep 6, 2019
1 parent 8f9786b commit f8b0e78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
with:
version: 10.x

- name: npm install
- name: Installing NPM
run: npm install

- name: Install PHP
- name: Installing PHP
run: node lib/install.js
env:
php-version: ${{ matrix.php-versions }}
13 changes: 0 additions & 13 deletions src/install.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const fs = require('fs');

async function get_file(filename: string) {
let github_path: string =
'https://raw.githubusercontent.com/shivammathur/setup-php/develop/src/';
'https://raw.githubusercontent.com/shivammathur/setup-php/master/src/';
const file: any = fs.createWriteStream(filename);
https.get(github_path + filename, function(response: any) {
response.pipe(file);
Expand Down

0 comments on commit f8b0e78

Please sign in to comment.