fix arch instructions and better exit handling #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package | |
on: push | |
jobs: | |
pack-arch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- uses: docker://archlinux:latest | |
with: | |
args: echo hello | |
pack-deb: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: rundock | |
run: | | |
docker ps | |
docker images | |
docker run debian echo hello | |