From 1c5d9dc023585be1c0e350a93299b3eca7326dae Mon Sep 17 00:00:00 2001 From: Hayden Young Date: Sun, 2 May 2021 01:43:11 +0100 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..6833477 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +--- +name: 'Release Formatting' +on: [ push ] + +jobs: + package: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install gzip, gunzip and xz + run: apt-get install gzip gunzip xz -y