Skip to content

Commit

Permalink
Roll back changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Mack committed Jun 10, 2024
1 parent 1a330e7 commit 0e8590d
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: k3s-on-host

on:
workflow_dispatch:
push:
branches: [ km/adding_action ]

Expand All @@ -21,16 +20,26 @@ jobs:
- uses: actions/checkout@v2


- uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/initialize@km/add_structure
with:
env_file: ./env/spacefx.env
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install devcontainer cli
run: |
npm install -g @devcontainers/cli
devcontainer --version
printenv
- uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/install-oras@km/add_structure
with:
oras_version: 0.16.0
- name: Install oras
run: |
curl -LO https://github.com/oras-project/oras/releases/download/v0.16.0/oras_0.16.0_linux_amd64.tar.gz
mkdir -p oras-install/
tar -zxf oras_0.16.0_*.tar.gz -C oras-install/
mv oras-install/oras /usr/local/bin/
rm -rf oras_0.16.0_*.tar.gz oras-install/
- uses: microsoft/azure-orbital-space-sdk-github-actions/composite-actions/install-devcontainer-cli@km/add_structure
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Building Feature Package
run: |
Expand Down

0 comments on commit 0e8590d

Please sign in to comment.