Skip to content
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.

Commit

Permalink
Removing test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Lessley Dennington committed Apr 26, 2021
1 parent 1d777d1 commit 2234f7c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 31 deletions.
34 changes: 5 additions & 29 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,13 @@ on: # rebuild any PRs and main branch changes
branches:
- main
- 'releases/*'
- ldennington/update-publish-path

jobs:
test:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Update winget repository
uses: ./
with:
id: Microsoft.GitCredentialManagerCore
version: 2.0.194.40577
token: ${{ secrets.WINGET_TOKEN }}
repo: ldennington/winget-pkgs
manifestText: |
PackageIdentifier: Microsoft.GitCredentialManagerCore
PackageVersion: 2.0.194.40577
PackageName: Git Credential Manager Core
Publisher: Microsoft Corporation
Moniker: git-credential-manager-core
PackageUrl: https://aka.ms/gcmcore
License: Copyright (C) Microsoft Corporation
ShortDescription: Secure, cross-platform Git credential storage with authentication to GitHub, Azure Repos, and other popular Git hosting services.
Installers:
- Architecture: x64
InstallerUrl: https://github.com/microsoft/Git-Credential-Manager-Core/releases/download/v2.0.194-beta/gcmcore-win-x86-2.0.194.40577.exe
InstallerType: inno
InstallerSha256: 26D3662F66E6AEC76C3BF155028D22D30ED8D1F1AFFA7C676F8DB0426939E8AD
PackageLocale: en-US
ManifestType: singleton
ManifestVersion: 1.0.0
alwaysUsePullRequest: true
releaseRepo: 'microsoft/Git-Credential-Manager-Core'
releaseTag: 'v2.0.194-beta'
- run: |
npm install
- run: |
npm run all
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ async function run(): Promise<void> {
);

core.debug('computing manifest file path...');
let manifestFilePath = `manifests/${id
const manifestFilePath = `manifests/${id
.charAt(0)
.toLowerCase()}/${id.replace('.', '/')}/${version}.yaml`.trim();
core.debug(`manifest file path is: ${manifestFilePath}`);
Expand Down

0 comments on commit 2234f7c

Please sign in to comment.