This commit is contained in:
Trym Lund Flogard 2021-06-05 14:12:01 +02:00
parent bcd3d376b1
commit 78aff342ff
3 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
require("dotenv").config() require('dotenv').config()

View File

@ -1,6 +1,6 @@
import * as core from '@actions/core' import * as core from '@actions/core'
import {NoFileOption} from './NoFileOption' import { NoFileOption } from './NoFileOption'
import {Inputs} from './Inputs' import { Inputs } from './Inputs'
export class ActionInputs implements Inputs { export class ActionInputs implements Inputs {
get ArtifactName(): string { get ArtifactName(): string {

View File

@ -1,6 +1,6 @@
import {NextcloudArtifact} from './nextcloud/NextcloudArtifact' import { NextcloudArtifact } from './nextcloud/NextcloudArtifact'
import * as core from '@actions/core' import * as core from '@actions/core'
import {ActionInputs} from './ActionInputs' import { ActionInputs } from './ActionInputs'
async function run() { async function run() {
try { try {